OBJECT
Query
Root queries that don't modify database records.
link GraphQL Schema definition
- type Query {
- # Returns a collection of existing admin roles. Only accessible to operator admin
- # users.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): AdminRolesConnection ( :
- # Search for published adverts. NOTE: This is probably only helpful for exposing
- # search directly to consumers.
- #
- # Arguments
- # attributes: Search query params to determine which adverts are
- # returned.
- AdvertSearchInput): AdvertSearchResponse! ( :
- # Select adverts with the given attributes. Only adverts that match all queried
- # fields will be returned. If no arguments are given, returns an empty response.
- #
- # Arguments
- # q: Keywords to search for. (Currently Title and Product ID)
- # idTitleSkuBarcode: Search in ProductID, Title, SKU and Barcode
- # brandIds: [Not documented]
- # legacyIds: [Not documented]
- # retailerIds: Filter to only associated sellers. (Overridden for
- # seller api keys).
- # status: [Not documented]
- # taxonIds: [Not documented]
- # taxonIdsWithDescendants: Select adverts that have associated
- # taxons and including the taxon descendants.
- # title: [Not documented]
- # variantBarcodes: Select adverts that have associated variants
- # with one of the given barcodes.
- # variantSkus: Select adverts that have associated variants with
- # one of the given skus.
- # createdSince: Select adverts created since this time
- # createdUntil: Select adverts created until this time
- # updatedSince: Select adverts updated since this time
- # updatedUntil: Select adverts updated until this time
- # sort: Specifies how the list is sorted
- # vetted: Select adverts that have been vetted
- # rejectedViaVetting: Select adverts that have been rejected via
- # vetting
- # withVettingRejectedReason: Select adverts that have a vetting
- # rejection reason
- # requiresVetting: Select adverts that require vetting
- # stockStatus: Select adverts with stock or without stock
- # failedCatalogRuleIds: Filter adverts with provided catalog rule
- # errors. Note this filter may be impacted by background tasks.
- # withFailedCatalogRules: Filter adverts with any catalog rule
- # errors. Note this filter may be impacted by background tasks.
- # externalId: Select adverts with a particular External ID
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- ID!], : [
- Int!], : [
- ID!], : [
- AdvertStatusEnum, :
- ID!], : [
- ID!], : [
- String, :
- String!], : [
- String!], : [
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- AdvertsWhereSort!], : [
- Boolean, :
- Boolean, :
- Boolean, :
- Boolean, :
- AdvertStockStatusEnum, :
- ID!], : [
- Boolean, :
- ExternalIDInput, :
- String, :
- String, :
- Int, :
- Int :
- ): AdvertsConnection!
- # Adyen settings for billing
- AdyenBillingSettings :
- # Adyen settings for ecommerce
- AdyenEcommerceSettings :
- # Afterpay payment configuration data.
- Afterpay :
- # Afterpay settings
- AfterpaySettings :
- # Includes deleted and unpublished adverts. When using a Seller API key, adverts
- # will be restricted to that Seller.
- #
- # Arguments
- # updatedSince: Only return adverts which have been updated since
- # this date. This takes into account not only the last updatedAt date of the
- # advert(s), but also the last updatedAt date of the seller associated with the
- # advert(s).
- # vetted: True if advert is vetted
- # requiresVetting: True if the advert requires vetting
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- Boolean, :
- Boolean, :
- AdvertsWhereSort!], : [
- String, :
- String, :
- Int, :
- Int :
- ): AllAdvertsConnection!
- # Query for sellers (extant and prospective or retailer). Only accessible to
- # operator admin users.
- #
- # Arguments
- # updatedSince: Only return sellers which have been updated since
- # this date
- # accountType: Only return sellers with these types (default is
- # retailer and prospective)
- # includeDeleted: Include soft deleted sellers in the list
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- AllSellersAccountTypeEnum!], : [
- Boolean, :
- AllSellersSort!], : [
- String, :
- String, :
- Int, :
- Int :
- ): AllSellersConnection!
- # Show key's principal.
- APIKeyPrincipal :
- # Get billings
- #
- # Arguments
- # retailerIds: IDs of sellers. If omitted will return all billing
- # invoices in marketplace. (Overridden for seller API keys)
- # filters: Filters the list of billings with different criteria
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID!], : [
- BillingFilters, :
- BillingSort, :
- String, :
- String, :
- Int, :
- Int :
- ): BillingsConnection!
- # Show braintree information.
- Braintree :
- # Braintree settings for billing.
- BraintreeBillingSettings :
- # Braintree settings for ecommerce.
- BraintreeEcommerceSettings :
- # Search for Brands.
- #
- # Arguments
- # keyword: Filter brands based on the keyword value passed.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- String, :
- Int, :
- Int :
- ): ESBrandSearchConnection!
- # List Brands.
- #
- # Arguments
- # showOnlineOnly: Request only brands that have online adverts
- # associated with them.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): BrandsConnection!
- # Get cart details.
- #
- # Arguments
- # id: ID of the requested cart.
- ID!): Cart! ( :
- # Returns a collection of Catalog Rules available on the marketplace.
- #
- # Arguments
- # createdSince: Only return catalog rules made on or after this
- # date
- # createdUntil: Only return catalog rules made on or before this
- # date
- # keys: Filter catalog rules by the key field
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- ISO8601DateTime, :
- CatalogRulesKeyEnum!], : [
- CatalogRulesSort, :
- String, :
- String, :
- Int, :
- Int :
- ): CatalogRulesConnection!
- # Returns relevant change logs. Only accessible to operator and seller admin
- # users.
- #
- # Arguments
- # createdAt: Show changes made between dates
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- DateRangeInput, :
- String, :
- String, :
- Int, :
- Int :
- ): ChangeLogsConnection
- # BETA: may change behaviour or arguments
- #
- # Arguments
- # itemId: [Not documented]
- # createdAt: [Not documented]
- # event: [Not documented]
- # itemType: [Not documented]
- # whodunnit: [Not documented]
- # whodunnitType: [Not documented]
- # enrichAttributes: Enables enrichment of papertrail version
- # attributes like id to name mapping
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- DateRangeInput, :
- String, :
- String, :
- String, :
- String, :
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): ContextualHistoryConnection!
- # All countries and states
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): CountrysConnection! ( :
- # Returns all CustomFieldGroups.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- Int, :
- Int :
- ): CustomFieldGroupsConnection! @deprecated( reason: "Use entityCustomFieldGroups instead" )
- # Direct email marketing.
- EmailMarketing! :
- # Email Marketing Subscriptions
- #
- # Arguments
- # subscribedSince: Only return Subscriptions created after this
- # date, format: YYYY-MM-DD
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601Date, :
- String, :
- String, :
- Int, :
- Int :
- ): SubscriptionsConnection!
- # Returns all CustomFieldGroups.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- Int, :
- Int :
- ): EntityCustomFieldGroupsConnection!
- # List ExternalIds. Only accessible to operator and seller admin users.
- #
- # Arguments
- # ownerType: Specify the type of the external id, eg: invoice,
- # order, variant.
- # key: Label for the system or client that uses this external ID.
- # value: The external ID used by an external system or client.
- # values: The external IDs (plural) used by an external system or
- # client.
- # first: Limit to the first N values
- (
- String, :
- String, :
- String, :
- String!], : [
- Int :
- ): [ExternalID!]!
- # Check if a feature flag is enabled?.
- #
- # Arguments
- # name: The flag name to check if it is enabled.
- String!): Boolean! ( :
- # Site footer data.
- Footer! :
- # Givex settings
- GivexSettings :
- # Deprecated: beta. Only accessible to operator and seller admin users.
- #
- # Arguments
- # keywords: Search query params to determine which records are
- # returned
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String!, :
- String, :
- String, :
- Int, :
- Int :
- ): GlobalSearchResultsConnection!
- # Golden Product records. Only accessible to operator admin users.
- #
- # Arguments
- # activeStatus: [Not documented]
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- GoldenProductActiveStatusEnum, :
- String, :
- String, :
- Int, :
- Int :
- ): GoldenProductsConnection!
- # Site header data.
- Header! :
- # Get health_check
- HealthCheck! :
- # List imports, and exports
- #
- # Arguments
- # type: [Not documented]
- # status: [Not documented]
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ImportExportTypeEnum, :
- ImportExportStatusEnum, :
- String, :
- String, :
- Int, :
- Int :
- ): ImportExportConnection
- # Get invoice amendments
- #
- # Arguments
- # filters: Filters the list of invoice amendments with different
- # criteria
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- InvoiceAmendmentFilters, :
- InvoiceAmendmentSort, :
- String, :
- String, :
- Int, :
- Int :
- ): InvoiceAmendmentsConnection!
- # All invoice annotation types.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- Int, :
- Int :
- ): InvoiceAnnotationTypeConnection
- # Get invoices
- #
- # Arguments
- # filters: Filters the list of invoices with different criteria
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- InvoiceFilters, :
- InvoiceSort, :
- String, :
- String, :
- Int, :
- Int :
- ): InvoicesConnection!
- # Klaviyo settings.
- KlaviyoSettings :
- # Get suggestions for location-based search queries.
- #
- # Arguments
- # query: Location query string. Can be a city or postcode.
- String!): [Location!]! ( :
- # Loyalty program levels.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- Int, :
- Int :
- ): LoyaltyProgramLevelsConnection
- # List mappings
- #
- # Arguments
- # sellerId: ID of the seller. May be omitted if using a seller
- # api key, but is required otherwise
- # filters: [Not documented]
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- MappingFilters, :
- String, :
- String, :
- Int, :
- Int :
- ): MappingsConnection!
- # Fetches an object given its ID.
- #
- # Arguments
- # id: ID of the object.
- ID!): Node ( :
- # Fetches a list of objects given a list of IDs.
- #
- # Arguments
- # ids: IDs of the objects.
- ID!]!): [Node]! ( : [
- # Returns a list of OptionTypes. Only accessible to operator admin users.
- #
- # Arguments
- # ids: Only return OptionTypes matching IDs in array
- # withNoPrototype: If true, only return OptionTypes which have no
- # prototype
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID!], : [
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): OptionTypesConnection!
- # Get order details
- #
- # Arguments
- # orderId: ID of the requested order.
- ID!): Order! ( :
- # Get order details from the cart that it was created from.
- #
- # Arguments
- # cartId: ID of the cart that was converted into this order.
- ID!): Order ( :
- # Get payment event.
- PaymentEvent @deprecated( reason: "Query PaymentEvent with the node resolver instead" ) :
- # Paypal Commerce settings
- PaypalCommerceSettings :
- # Returns an array of user permissions grouped by category. Only accessible to
- # operator admin users.
- PermissionsByCategory!]! : [
- # Returns a list of Promotions.
- #
- # Arguments
- # status: One of: active, upcoming, expired, all. Defaults to
- # all.
- # sellerId: ID of the seller. If omitted will return promotions
- # for all sellers.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- ID, :
- String, :
- String, :
- Int, :
- Int :
- ): PromotionsConnection!
- # Returns a list of Prototypes. Only accessible to operator admin users.
- #
- # Arguments
- # ids: Only return Prototypes matching IDs in array
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- ID!], : String, : String, : Int, : Int): PrototypesConnection! ( : [
- # RankedResult records - force first adverts for category/brand
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): RankedResultsConnection! ( :
- # Returns a list of redirects.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): RedirectConnection! ( :
- # Pre and Post Refund Reasons.
- RefundReason! :
- # Refund request notes
- #
- # Arguments
- # createdSince: Only return refund request notes created after
- # this date.
- # createdUntil: Only return refund request notes created before
- # this date.
- # newStatus: Only return refund request notes with this as the
- # new status.
- # refundRequestIds: Only return refund request notes for
- # associated refund requests.
- # refundRequestLineItemIds: Only return refund request notes for
- # associated refund request line items.
- # retailerIds: Only return remittances for associated sellers.
- # (Overridden for seller API keys)
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- ISO8601DateTime, :
- String, :
- ID!], : [
- ID!], : [
- ID!], : [
- String, :
- String, :
- Int, :
- Int :
- ): RefundRequestNoteConnection!
- # Retrieve refund requests
- #
- # Arguments
- # sellerId: ID of the seller. If omitted will return all refund
- # requests
- # filters: Filters the list of refund requests with different
- # criteria
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- RefundRequestFilters, :
- String, :
- String, :
- Int, :
- Int :
- ): RefundRequestConnection!
- # Get remittance advices.
- #
- # Arguments
- # legacyIds: Only return remittances with these legacy IDs.
- # retailerIds: Only return remittances for associated sellers.
- # (Overridden for seller API keys)
- # retailerLegacyIds: Only return remittances for sellers with
- # these legacy IDs. (Overridden for seller API keys)
- # retailerNames: Only return remittances for sellers with these
- # names. (Overridden for seller API keys)
- # createdSince: Only return remittance advices created after this
- # date.
- # createdUntil: Only return remittance advices created before
- # this date.
- # remittanceActionLastRunSince: Only return remittance advices
- # with remittance actions run before this date.
- # remittanceActionLastRunUntil: Only return remittance advices
- # with remittance actions run after this date.
- # paidSince: Only return remittance advices paid after this date.
- # paidUntil: Only return remittance advices paid before this
- # date.
- # remittableType: Only return remittances associated with
- # invoices (if value is 'invoice') or invoice amendments (if value is
- # 'invoice_amendment').
- # total: Only return remittances with this total value.
- # totalPaid: Only return remittances with this total paid value.
- # invoiceIds: Only return remittances for associated invoices.
- # invoiceLegacyIds: Only return remittances for invoices with
- # these legacy IDs.
- # invoiceAmendmentIds: Only return remittances for associated
- # invoice amendments.
- # invoiceAmendmentLegacyIds: Only return remittances for invoice
- # amendments with these legacy IDs.
- # remittanceActions: Only return remittances with particular
- # remittance actions performed on them. Options available: 'hyperwallet', 'xero'.
- # paymentReference: Only return remittance advices with a
- # specified payment reference.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- Int!], : [
- ID!], : [
- Int!], : [
- String!], : [
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- ISO8601DateTime, :
- String, :
- Float, :
- Float, :
- ID!], : [
- Int!], : [
- ID!], : [
- Int!], : [
- String!], : [
- String!], : [
- String, :
- String, :
- Int, :
- Int :
- ): RemittanceAdviceConnection!
- # Get multiple remittances.
- #
- # Arguments
- # createdSince: Only return remittances made after this date
- # createdUntil: Only return remittances made before this date
- # released: Only return remittances that are released (if value
- # is 'true') or held (if value is 'false').
- # processed: Only return remittances where a remittance advice
- # has been generated (if value is 'true') or pending generation (if value is
- # 'false').
- # retailerIds: Only return remittances for associated sellers.
- # (you can supply retailerIds OR retailerBusinessNames but not both)
- # retailerBusinessNames: Only return remittances for sellers with
- # these names. (you can supply retailerIds OR retailerBusinessNames but not both)
- # remittableType: Only return remittances associated with
- # invoices (if value is 'invoice') or invoice amendments (if value is
- # 'invoice_amendment').
- # invoiceIds: Only return remittances for associated invoices.
- # invoiceLegacyIds: Only return remittances for invoices with
- # these legacy IDs.
- # invoiceAmendmentIds: Only return remittances for associated
- # invoice amendments.
- # invoiceAmendmentLegacyIds: Only return remittances for invoice
- # amendments with these legacy IDs.
- # pendingReasons: Only return remittances that are unprocessed
- # for a particular reason.Options available: 'missing_remittance_details',
- # 'missing_hyperwallet_details', 'zero_or_negative_total_remittance_amount',
- # 'pending_hyperwallet_verification', 'missing_xero_account', 'pending_release'.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- ISO8601DateTime, :
- Boolean, :
- Boolean, :
- ID!], : [
- String!], : [
- String, :
- ID!], : [
- Int!], : [
- ID!], : [
- Int!], : [
- String, :
- String, :
- String, :
- Int, :
- Int :
- ): RemittanceConnection!
- # List seller categories.
- SellerCategoryLink!]! : [
- # Minimal set of attributes required for displaying and filtering Sellers on a
- # map.
- SellerGeolocation!]! : [
- # Query ElasticSearch for sellers.
- #
- # Arguments
- # attributes: Query params to define which sellers to search for.
- # pagination: Params to define how to paginate search results.
- (
- SellerSearchInput, :
- SellerSearchPaginationInput :
- ): SellerSearchResponse!
- # Insights & Statistics for a seller
- #
- # Arguments
- # sellerId: ID of the seller. May be omitted if using a seller
- # api key, but is required otherwise
- ID): SellerStats ( :
- # Select sellers with the given attributes. Only sellers that match all queried
- # fields will be returned. If no arguments are given, returns all available
- # sellers.
- #
- # Arguments
- # q: Keywords to search for. (Currently Business Name, Email
- # Address, and Legal Business Name)
- # retailerIds: Filter by ID of the sellers.
- # slaRatingRange: Filter by the SLA rating range
- # sort: Specifies how the list is sorted
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- ID!], : [
- SellerSlaRatingRangeInput, :
- SellersWhereSort, :
- String, :
- String, :
- Int, :
- Int :
- ): SellerConnection!
- # SendGrid settings.
- SendgridSettings :
- # Information about the current session
- SessionData :
- # Shipment Addresses.
- #
- # Arguments
- # sellerId: ID of the seller. If omitted will return all shipment
- # addresses for marketplace.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- String, :
- String, :
- Int, :
- Int :
- ): AddresssConnection
- # Shipment Carriers.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): ShipmentCarrierConnection ( :
- # Returns a collection of shipping options available on the marketplace.
- #
- # Arguments
- # sellerId: ID of the seller. If omitted will return all shipping
- # rules including marketplace rules
- # marketplaceOnly: If true will return only marketplace rules
- # filters: Filters the list of shipping options with different
- # criteria
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- Boolean, :
- ShippingOptionFilters, :
- String, :
- String, :
- Int, :
- Int :
- ): ShippingOptionConnection
- # Returns a collection of shipping profiles available on the marketplace.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): ShippingProfileConnection ( :
- # Returns a collection of shipping rates available on the marketplace.
- #
- # Arguments
- # marketplaceOnly: If true will return only marketplace rates
- # sellerId: ID of the seller. If omitted will return all shipping
- # rates including marketplace rates
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- Boolean, :
- ID, :
- String, :
- String, :
- Int, :
- Int :
- ): ShippingRateConnection
- # Returns a collection of shipping zones available on the marketplace.
- #
- # Arguments
- # sellerId: ID of the seller. If omitted will return all shipping
- # rules including marketplace rules
- # marketplaceOnly: If true, only returns marketplace shipping
- # zones
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): ShippingZoneConnection
- # Returns a Shippit Credentials Object for shipping settings.
- #
- # Arguments
- # sellerId: ID of the seller. If omitted will return an error
- ID!): ShippitCredentials ( :
- # Site configuration properties.
- SiteConfig! :
- # List taxon codes.
- TaxCode!]! : [
- # Search for Taxons.
- #
- # Arguments
- # searchValue: Filter taxons where the taxon name contains the
- # search value string. Must have a minimum of 2 characters for each search word.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- String, :
- String, :
- String, :
- Int, :
- Int :
- ): TaxonConnection!
- # List ExternalIds.
- #
- # Arguments
- # parentId: Filter taxons that belong to to the selected parent.
- # showOnlineOnly: Filter taxons that have online adverts
- # associated with them.
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- Boolean, :
- String, :
- String, :
- Int, :
- Int :
- ): TaxonsConnection!
- # Get taxon and brand suggestions for text-based search queries.
- #
- # Arguments
- # query: Query string to be used to find text suggestions.
- String!): [TextQuerySuggestion!]! ( :
- # Return theming attributes from AppConfig.
- Theme! :
- # Third-party login links
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- # scope: What kind of login provider?
- (
- String, :
- String, :
- Int, :
- Int, :
- ThirdPartyLoginLinkScopeEnum! :
- ): ThirdPartyLoginLinkConnection!
- # Fetch I18n translation values by key.
- #
- # Arguments
- # translations: Params to generate the requested translations.
- TranslationInput!]!): [Translation!]! ( : [
- # Retrieve carts that have been updated relative a certain timestamp.
- # Either updatedSince or notUpdatedSince must be supplied.
- # If you supply both or neither, you will get no results.
- # . Only accessible to operator admin users.
- #
- # Arguments
- # updatedSince: Only return carts which have been updated since
- # this date
- # notUpdatedSince: Only return carts which have not been updated
- # since this date
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime, :
- ISO8601DateTime, :
- String, :
- String, :
- Int, :
- Int :
- ): UpdatedCartsConnection!
- # Retrieve orders that have been updated after a certain date. Only accessible to
- # operator admin users.
- #
- # Arguments
- # updatedSince: Only return orders which have been updated since
- # this date
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime!, :
- String, :
- String, :
- Int, :
- Int :
- ): UpdatedOrdersConnection!
- # Retrieve refund requests that have been updated after a certain date. Only
- # accessible to operator and seller admin users.
- #
- # Arguments
- # updatedSince: Only return refund requests which have been
- # updated since this date
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ISO8601DateTime!, :
- String, :
- String, :
- Int, :
- Int :
- ): UpdatedRefundRequestsConnection!
- # List users.
- User! :
- # Select variants with the given attributes. Only variants that match all queried
- # fields will be returned. If no arguments are given, returns an empty response.
- # Only accessible to operator and seller admin users.
- #
- # Arguments
- # advertFilters: [Not documented]
- # variantFilters: [Not documented]
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- AdvertFilterInput, :
- VariantFilterInput, :
- String, :
- String, :
- Int, :
- Int :
- ): VariantConnection!
- # Returns the webhook events associated to webhooks.
- #
- # Arguments
- # webhookId: ID of the webhook, if not provided then all webhook
- # events are returned, ordered by updated_at timestamp
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- (
- ID, :
- String, :
- String, :
- Int, :
- Int :
- ): WebhookEventsConnection
- # Returns the webhooks linked to marketplacer events.
- #
- # Arguments
- # after: Returns the elements in the list that come after the
- # specified cursor.
- # before: Returns the elements in the list that come before the
- # specified cursor.
- # first: Returns the first _n_ elements from the list.
- # last: Returns the last _n_ elements from the list.
- String, : String, : Int, : Int): WebhooksConnection ( :
- # Yotpo settings
- YotpoSettings :
- # Zip settings
- ZipSettings :
- # Zooz settings
- ZoozSettings :
- }
link Require by
This element is not required by anyone