Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 932 Bytes

Join.md

File metadata and controls

30 lines (21 loc) · 932 Bytes

Join

Properties

Name Type Description Notes
type str Type of the join operation
on List[JoinOn] List of objects defining joined tables
query FulltextFilter [optional]
table str Basic table of the join operation

Example

from manticoresearch.models.join import Join

# 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]