You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* The result of exeution. data is the result of executing the
* query, errors is null if no errors occurred, and is a
* non-empty array if an error occurred.
*/
type ExecutionResult = {
data: ?Object;
errors?: Array;
}
The text was updated successfully, but these errors were encountered:
/**
* The result of exeution.
data
is the result of executing the* query,
errors
is null if no errors occurred, and is a* non-empty array if an error occurred.
*/
type ExecutionResult = {
data: ?Object;
errors?: Array;
}
The text was updated successfully, but these errors were encountered: