Skip to content

Latest commit

 

History

History
72 lines (54 loc) · 1.3 KB

File metadata and controls

72 lines (54 loc) · 1.3 KB
id interfaces-relay-query-request
title RelayQueryRequest
layout docs
category Interfaces
indent true
permalink docs/interfaces-relay-query-request.html

RelayQueryRequest encapsulates a query that Relay needs to send to the server. They are made available to network layers via the sendQueries method.

Overview

Methods

Methods

getQueryString

getQueryString(): string

Gets a string representation of the GraphQL query.

getVariables

getVariables(): {[name: string]: mixed}

Gets the variables used by the query. These variables should be serialized and sent in the GraphQL request.

getID

getID(): string

Gets a unique identifier for this query. These identifiers are useful for assigning response payloads to their corresponding queries when sent in a single GraphQL request.

getDebugName

getDebugName(): string

Gets a string name used to refer to this request for printing debug output.