Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

TwinGraphQuery.md

File metadata and controls

31 lines (22 loc) · 1008 Bytes

TwinGraphQuery

a twin graph query in cypher language

Properties

Name Type Description Notes
version str Twin graph version [optional]
query str the query in cypher language

Example

from cosmotech_api.models.twin_graph_query import TwinGraphQuery

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

# convert the object into a dict
twin_graph_query_dict = twin_graph_query_instance.to_dict()
# create an instance of TwinGraphQuery from a dict
twin_graph_query_form_dict = twin_graph_query.from_dict(twin_graph_query_dict)

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