Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

GraphQLResponse

Properties

Name Type Description Notes
data Dict[str, object] The response data for the GraphQL operation. [optional]
errors List[GraphQLError] Any errors that occurred during the GraphQL operation. [optional]

Example

from cobo_waas2.models.graph_ql_response import GraphQLResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GraphQLResponse from a JSON string
graph_ql_response_instance = GraphQLResponse.from_json(json)
# print the JSON string representation of the object
print(GraphQLResponse.to_json())

# convert the object into a dict
graph_ql_response_dict = graph_ql_response_instance.to_dict()
# create an instance of GraphQLResponse from a dict
graph_ql_response_from_dict = GraphQLResponse.from_dict(graph_ql_response_dict)

[Back to Model list] [Back to API list] [Back to README]