Join

October 23, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typestrType of the join operation
onList[JoinOn]List of objects defining joined tables
queryFulltextFilter[optional]
tablestrBasic table of the join operation

Example

from manticoresearch.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]