Page Contents

Home > @loopback/repository-json-schema > getFilterJsonSchemaFor

getFilterJsonSchemaFor() function

Build a JSON schema describing the format of the “filter” object used to query model instances.

Note we don’t take the model properties into account yet and return a generic json schema allowing any “where” condition.

Signature:

export declare function getFilterJsonSchemaFor(modelCtor: typeof Model, options?: FilterSchemaOptions): JsonSchema;

Parameters

Parameter Type Description
modelCtor typeof Model The model constructor to build the filter schema for.
options FilterSchemaOptions (Optional) Options to build the filter schema.

Returns:

JsonSchema