JoinCond

October 23, 2025 ยท View on GitHub

Object representing the conditions used to perform the join operation

Properties

NameTypeDescriptionNotes
var_fieldstrField to join on
tablestrJoined table
queryFulltextFilter[optional]
typeobject[optional]

Example

from manticoresearch.models.join_cond import JoinCond

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

# convert the object into a dict
join_cond_dict = join_cond_instance.to_dict()
# create an instance of JoinCond from a dict
join_cond_from_dict = JoinCond.from_dict(join_cond_dict)

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