querySchemas( )


Creates a query to retrieve a list of schemas.

Note:

This method can retrieve all schemas with a GLOBAL scope and schemas with a SITE scope for the site the API request is authorized to access.

The querySchemas() function builds a query to retrieve a list of translation schemas and returns a SchemasQueryBuilder object.

The returned object contains the query definition, which is used to run the query using the find() function.

You can refine the query by chaining SchemasQueryBuilder functions onto the query. SchemasQueryBuilder functions enable you to filter, sort, and control the results that querySchemas() returns.

querySchemas() runs with the following SchemasQueryBuilder defaults which you can override:

The following SchemasQueryBuilder functions are supported for querySchemas(). For a full description of the operations object, see the object returned for the items property in SchemasQueryResult.

PROPERTYSUPPORTED FILTERS & SORTING
_ideq(),ne(),exists(),in(),hasSome(),startsWith(),gt(),lt(),le(),ge(),ascending(),descending()
key.appIdeq(),ne(),exists(),in(),hasSome(),startsWith(),gt(),lt(),le(),ge(),ascending(),descending()
key.entityTypeeq(),ne(),exists(),in(),hasSome(),startsWith(),gt(),lt(),le(),ge(),ascending(),descending()
key.scopeeq(),ne(),exists(),in(),hasSome(),ascending(),descending()
hiddeneq(),ne(),exists(),in(),hasSome(),ascending(),descending()
parentIdeq(),ne(),exists(),in(),hasSome(),startsWith(),gt(),lt(),le(),ge(),ascending(),descending()
Authentication

This method may require higher-level permissions than the caller has, based on their identity and roles and permissions. In these cases, you can ensure the method is called with the required level of authorization by using one of the following:

Permissions
Wix Multilingual - Translation Schema Read
Learn more about app permissions.
Method Declaration
Copy
Method Parameters
optionsQuerySchemasOptions
Returns
Errors

This method doesn't return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?