Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

OpalQueryResultEdge

A single result edge from an OpalQuery, containing the matched entity and its pagination cursor.

Properties

Name Type Description Notes
node OpalQueryResultNode
cursor str Opaque cursor for this entity, used for pagination.

Example

from opal_security.models.opal_query_result_edge import OpalQueryResultEdge

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

# convert the object into a dict
opal_query_result_edge_dict = opal_query_result_edge_instance.to_dict()
# create an instance of OpalQueryResultEdge from a dict
opal_query_result_edge_from_dict = OpalQueryResultEdge.from_dict(opal_query_result_edge_dict)

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