Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

OpalNodeQueryResults

Paginated results of a NODE-type OpalQuery — one edge per matched entity (user, resource, or group).

Properties

Name Type Description Notes
type str
edges List[OpalQueryResultEdge] List of matched entities.
page_info PageInfo

Example

from opal_security.models.opal_node_query_results import OpalNodeQueryResults

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

# convert the object into a dict
opal_node_query_results_dict = opal_node_query_results_instance.to_dict()
# create an instance of OpalNodeQueryResults from a dict
opal_node_query_results_from_dict = OpalNodeQueryResults.from_dict(opal_node_query_results_dict)

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