| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656 |
- import gql from 'graphql-tag';
- export const ADMINISTRATOR_FRAGMENT = gql`
- fragment Administrator on Administrator {
- id
- firstName
- lastName
- emailAddress
- user {
- id
- identifier
- lastLogin
- roles {
- id
- code
- description
- permissions
- }
- }
- }
- `;
- export const ASSET_FRAGMENT = gql`
- fragment Asset on Asset {
- id
- name
- fileSize
- mimeType
- type
- preview
- source
- }
- `;
- export const PRODUCT_VARIANT_FRAGMENT = gql`
- fragment ProductVariant on ProductVariant {
- id
- createdAt
- updatedAt
- enabled
- languageCode
- name
- currencyCode
- price
- priceWithTax
- prices {
- currencyCode
- price
- }
- stockOnHand
- trackInventory
- taxRateApplied {
- id
- name
- value
- }
- taxCategory {
- id
- name
- }
- sku
- options {
- id
- code
- languageCode
- groupId
- name
- }
- facetValues {
- id
- code
- name
- facet {
- id
- name
- }
- }
- featuredAsset {
- ...Asset
- }
- assets {
- ...Asset
- }
- translations {
- id
- languageCode
- name
- }
- channels {
- id
- code
- }
- }
- ${ASSET_FRAGMENT}
- `;
- export const PRODUCT_WITH_VARIANTS_FRAGMENT = gql`
- fragment ProductWithVariants on Product {
- id
- enabled
- languageCode
- name
- slug
- description
- featuredAsset {
- ...Asset
- }
- assets {
- ...Asset
- }
- translations {
- languageCode
- name
- slug
- description
- }
- optionGroups {
- id
- languageCode
- code
- name
- }
- variants {
- ...ProductVariant
- }
- facetValues {
- id
- code
- name
- facet {
- id
- name
- }
- }
- channels {
- id
- code
- }
- }
- ${PRODUCT_VARIANT_FRAGMENT}
- ${ASSET_FRAGMENT}
- `;
- export const ROLE_FRAGMENT = gql`
- fragment Role on Role {
- id
- code
- description
- permissions
- channels {
- id
- code
- token
- }
- }
- `;
- export const CONFIGURABLE_FRAGMENT = gql`
- fragment ConfigurableOperation on ConfigurableOperation {
- args {
- name
- value
- }
- code
- }
- `;
- export const COLLECTION_FRAGMENT = gql`
- fragment Collection on Collection {
- id
- name
- slug
- description
- isPrivate
- languageCode
- featuredAsset {
- ...Asset
- }
- assets {
- ...Asset
- }
- filters {
- ...ConfigurableOperation
- }
- translations {
- id
- languageCode
- name
- slug
- description
- }
- parent {
- id
- name
- }
- children {
- id
- name
- position
- }
- }
- ${ASSET_FRAGMENT}
- ${CONFIGURABLE_FRAGMENT}
- `;
- export const FACET_VALUE_FRAGMENT = gql`
- fragment FacetValue on FacetValue {
- id
- languageCode
- code
- name
- translations {
- id
- languageCode
- name
- }
- facet {
- id
- name
- }
- }
- `;
- export const FACET_WITH_VALUES_FRAGMENT = gql`
- fragment FacetWithValues on Facet {
- id
- languageCode
- isPrivate
- code
- name
- translations {
- id
- languageCode
- name
- }
- values {
- ...FacetValue
- }
- }
- ${FACET_VALUE_FRAGMENT}
- `;
- export const COUNTRY_FRAGMENT = gql`
- fragment Country on Region {
- id
- code
- name
- enabled
- translations {
- id
- languageCode
- name
- }
- }
- `;
- export const ADDRESS_FRAGMENT = gql`
- fragment Address on Address {
- id
- fullName
- company
- streetLine1
- streetLine2
- city
- province
- postalCode
- country {
- id
- code
- name
- }
- phoneNumber
- defaultShippingAddress
- defaultBillingAddress
- }
- `;
- export const CUSTOMER_FRAGMENT = gql`
- fragment Customer on Customer {
- id
- title
- firstName
- lastName
- phoneNumber
- emailAddress
- user {
- id
- identifier
- verified
- lastLogin
- }
- addresses {
- ...Address
- }
- }
- ${ADDRESS_FRAGMENT}
- `;
- export const ADJUSTMENT_FRAGMENT = gql`
- fragment Adjustment on Adjustment {
- adjustmentSource
- amount
- description
- type
- }
- `;
- export const SHIPPING_ADDRESS_FRAGMENT = gql`
- fragment ShippingAddress on OrderAddress {
- fullName
- company
- streetLine1
- streetLine2
- city
- province
- postalCode
- country
- phoneNumber
- }
- `;
- export const ORDER_FRAGMENT = gql`
- fragment Order on Order {
- id
- createdAt
- updatedAt
- code
- active
- state
- total
- totalWithTax
- totalQuantity
- currencyCode
- customer {
- id
- firstName
- lastName
- }
- }
- `;
- export const PAYMENT_FRAGMENT = gql`
- fragment Payment on Payment {
- id
- transactionId
- amount
- method
- state
- nextStates
- metadata
- refunds {
- id
- total
- reason
- }
- }
- `;
- export const ORDER_WITH_LINES_FRAGMENT = gql`
- fragment OrderWithLines on Order {
- id
- createdAt
- updatedAt
- code
- state
- active
- customer {
- id
- firstName
- lastName
- }
- lines {
- id
- featuredAsset {
- preview
- }
- productVariant {
- id
- name
- sku
- }
- taxLines {
- description
- taxRate
- }
- unitPrice
- unitPriceWithTax
- quantity
- unitPrice
- unitPriceWithTax
- taxRate
- linePriceWithTax
- }
- surcharges {
- id
- description
- sku
- price
- priceWithTax
- }
- subTotal
- subTotalWithTax
- total
- totalWithTax
- totalQuantity
- currencyCode
- shipping
- shippingWithTax
- shippingLines {
- priceWithTax
- shippingMethod {
- id
- code
- name
- description
- }
- }
- shippingAddress {
- ...ShippingAddress
- }
- payments {
- ...Payment
- }
- fulfillments {
- id
- state
- method
- trackingCode
- lines {
- orderLineId
- quantity
- }
- }
- total
- }
- ${SHIPPING_ADDRESS_FRAGMENT}
- ${PAYMENT_FRAGMENT}
- `;
- export const PROMOTION_FRAGMENT = gql`
- fragment Promotion on Promotion {
- id
- createdAt
- updatedAt
- couponCode
- startsAt
- endsAt
- name
- description
- enabled
- conditions {
- ...ConfigurableOperation
- }
- actions {
- ...ConfigurableOperation
- }
- translations {
- id
- languageCode
- name
- description
- }
- }
- ${CONFIGURABLE_FRAGMENT}
- `;
- export const ZONE_FRAGMENT = gql`
- fragment Zone on Zone {
- id
- name
- members {
- ...Country
- }
- }
- ${COUNTRY_FRAGMENT}
- `;
- export const TAX_RATE_FRAGMENT = gql`
- fragment TaxRate on TaxRate {
- id
- name
- enabled
- value
- category {
- id
- name
- }
- zone {
- id
- name
- }
- customerGroup {
- id
- name
- }
- }
- `;
- export const CURRENT_USER_FRAGMENT = gql`
- fragment CurrentUser on CurrentUser {
- id
- identifier
- channels {
- code
- token
- permissions
- }
- }
- `;
- export const VARIANT_WITH_STOCK_FRAGMENT = gql`
- fragment VariantWithStock on ProductVariant {
- id
- stockOnHand
- stockAllocated
- stockMovements {
- items {
- ... on StockMovement {
- id
- type
- quantity
- }
- }
- totalItems
- }
- }
- `;
- export const FULFILLMENT_FRAGMENT = gql`
- fragment Fulfillment on Fulfillment {
- id
- state
- nextStates
- method
- trackingCode
- lines {
- orderLineId
- quantity
- }
- }
- `;
- export const CHANNEL_FRAGMENT = gql`
- fragment Channel on Channel {
- id
- code
- token
- currencyCode
- availableCurrencyCodes
- defaultCurrencyCode
- defaultLanguageCode
- defaultShippingZone {
- id
- }
- defaultTaxZone {
- id
- }
- pricesIncludeTax
- }
- `;
- export const GLOBAL_SETTINGS_FRAGMENT = gql`
- fragment GlobalSettings on GlobalSettings {
- id
- availableLanguages
- trackInventory
- outOfStockThreshold
- serverConfig {
- orderProcess {
- name
- to
- }
- permittedAssetTypes
- permissions {
- name
- description
- assignable
- }
- customFieldConfig {
- Customer {
- ... on CustomField {
- name
- }
- }
- }
- }
- }
- `;
- export const CUSTOMER_GROUP_FRAGMENT = gql`
- fragment CustomerGroup on CustomerGroup {
- id
- name
- customers {
- items {
- id
- }
- totalItems
- }
- }
- `;
- export const PRODUCT_OPTION_GROUP_FRAGMENT = gql`
- fragment ProductOptionGroup on ProductOptionGroup {
- id
- code
- name
- options {
- id
- code
- name
- }
- translations {
- id
- languageCode
- name
- }
- }
- `;
- export const PRODUCT_WITH_OPTIONS_FRAGMENT = gql`
- fragment ProductWithOptions on Product {
- id
- optionGroups {
- id
- code
- options {
- id
- code
- }
- }
- }
- `;
- export const SHIPPING_METHOD_FRAGMENT = gql`
- fragment ShippingMethod on ShippingMethod {
- id
- code
- name
- description
- calculator {
- code
- args {
- name
- value
- }
- }
- checker {
- code
- args {
- name
- value
- }
- }
- }
- `;
|