This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Creates a query to retrieve a list of fulfillment methods.
The queryFulfillmentMethods()
function builds a query to retrieve a list of fulfillment methods and returns a FulfillmentMethodsQueryBuilder
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 FulfillmentMethodsQueryBuilder
functions onto the query. FulfillmentMethodsQueryBuilder
functions enable you to filter, sort, and control the results that queryFulfillmentMethods()
returns.
queryFulfillmentMethods()
runs with the following FulfillmentMethodsQueryBuilder
defaults, which you can override:
The following FulfillmentMethodsQueryBuilder
functions are supported for queryFulfillmentMethods()
. For a full description of the fulfillment method object, see the object returned for the items
property in FulfillmentMethodsQueryResult
.
PROPERTY | SUPPORTED FILTERS & SORTING |
---|---|
_id | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() ,ascending() ,descending() |
_createdDate | eq() ,ne() ,exists() ,in() ,hasSome() ,lt() ,le() ,gt() ,ge() ,ascending() ,descending() |
_updatedDate | eq() ,ne() ,exists() ,in() ,hasSome() ,lt() ,le() ,gt() ,ge() ,ascending() ,descending() |
type | eq() ,ne() ,exists() ,in() ,hasSome() ,ascending() ,descending() |
name | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() ,ascending() ,descending() |
enabled | eq() ,ne() ,exists() ,in() ,hasSome() ,ascending() ,descending() |
fee | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() ,ascending() ,descending() |
minOrderPrice | eq() ,ne() ,exists() ,in() ,hasSome() ,startsWith() ,ascending() ,descending() |