+
K
The singleton that sends queries to the FoundryTS backend under the hood.
This singleton is automatically initialized using environment variables and the user is not required to initialize an instance for calling FoundryTS supported functions.
Copied!1 >>> fts = FoundryTS()
1
>>> fts = FoundryTS()
Property for searching the Ontology with foundryts.search.Search.
foundryts.search.Search
We recommend using this property to perform search as it enforces safeguards for the searching in the Foundry ecosystem.
Copied!1 2 3 >>> fts = FoundryTS() >>> objects = fts.search.series(metadata.property == 'value') NodeCollection(...)
1 2 3
>>> fts = FoundryTS() >>> objects = fts.search.series(metadata.property == 'value') NodeCollection(...)