Skip to content

Join

Optional join of another collection onto each search result. Forms: '', '[=]', or with '()'. Parent refs: $id, $.meta.. Child refs: $$id, $$.meta.. Omitted '[]' defaults to [$id=$$id]. Joined documents appear under joined[collection_name].

Properties

Name Type Description Notes

Example

from amgix_client.models.join import Join

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

# convert the object into a dict
join_dict = join_instance.to_dict()
# create an instance of Join from a dict
join_from_dict = Join.from_dict(join_dict)
[Back to Model list] [Back to API list] [Back to README]