| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791 |
- import { graphql } from './graphql-admin';
- export const administratorFragment = graphql(`
- fragment Administrator on Administrator {
- id
- firstName
- lastName
- emailAddress
- user {
- id
- identifier
- lastLogin
- roles {
- id
- code
- description
- permissions
- }
- }
- }
- `);
- export const assetFragment = graphql(`
- fragment Asset on Asset {
- id
- name
- fileSize
- mimeType
- type
- preview
- source
- }
- `);
- export const productVariantFragment = graphql(
- `
- 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
- }
- }
- `,
- [assetFragment],
- );
- export const productWithVariantsFragment = graphql(
- `
- 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
- }
- }
- `,
- [productVariantFragment, assetFragment],
- );
- export const roleFragment = graphql(`
- fragment Role on Role {
- id
- code
- description
- permissions
- channels {
- id
- code
- token
- }
- }
- `);
- export const configurableFragment = graphql(`
- fragment ConfigurableOperation on ConfigurableOperation {
- args {
- name
- value
- }
- code
- }
- `);
- export const collectionFragment = graphql(
- `
- 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
- }
- }
- `,
- [assetFragment, configurableFragment],
- );
- export const facetValueFragment = graphql(`
- fragment FacetValue on FacetValue {
- id
- languageCode
- code
- name
- translations {
- id
- languageCode
- name
- }
- facet {
- id
- name
- }
- }
- `);
- export const facetWithValuesFragment = graphql(
- `
- fragment FacetWithValues on Facet {
- id
- languageCode
- isPrivate
- code
- name
- translations {
- id
- languageCode
- name
- }
- values {
- ...FacetValue
- }
- }
- `,
- [facetValueFragment],
- );
- export const countryFragment = graphql(`
- fragment Country on Region {
- id
- code
- name
- enabled
- translations {
- id
- languageCode
- name
- }
- }
- `);
- export const addressFragment = graphql(`
- fragment Address on Address {
- id
- fullName
- company
- streetLine1
- streetLine2
- city
- province
- postalCode
- country {
- id
- code
- name
- }
- phoneNumber
- defaultShippingAddress
- defaultBillingAddress
- }
- `);
- export const customerFragment = graphql(
- `
- fragment Customer on Customer {
- id
- title
- firstName
- lastName
- phoneNumber
- emailAddress
- user {
- id
- identifier
- verified
- lastLogin
- }
- addresses {
- ...Address
- }
- }
- `,
- [addressFragment],
- );
- export const adjustmentFragment = graphql(`
- fragment Adjustment on Adjustment {
- adjustmentSource
- amount
- description
- type
- }
- `);
- export const shippingAddressFragment = graphql(`
- fragment ShippingAddress on OrderAddress {
- fullName
- company
- streetLine1
- streetLine2
- city
- province
- postalCode
- country
- countryCode
- phoneNumber
- }
- `);
- export const orderFragment = graphql(`
- fragment Order on Order {
- id
- createdAt
- updatedAt
- code
- active
- state
- total
- totalWithTax
- totalQuantity
- currencyCode
- customer {
- id
- firstName
- lastName
- }
- }
- `);
- export const canceledOrderFragment = graphql(`
- fragment CanceledOrder on Order {
- id
- state
- lines {
- id
- quantity
- }
- }
- `);
- export const paymentFragment = graphql(`
- fragment Payment on Payment {
- id
- transactionId
- amount
- method
- state
- nextStates
- metadata
- refunds {
- id
- total
- reason
- }
- }
- `);
- export const refundFragment = graphql(`
- fragment Refund on Refund {
- id
- state
- items
- transactionId
- shipping
- total
- metadata
- }
- `);
- export const orderWithLinesFragment = graphql(
- `
- 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
- }
- `,
- [shippingAddressFragment, paymentFragment],
- );
- export const orderWithModificationsFragment = graphql(
- `
- fragment OrderWithModifications on Order {
- id
- state
- subTotal
- subTotalWithTax
- shipping
- shippingWithTax
- total
- totalWithTax
- lines {
- id
- quantity
- orderPlacedQuantity
- linePrice
- linePriceWithTax
- unitPriceWithTax
- discountedLinePriceWithTax
- proratedLinePriceWithTax
- proratedUnitPriceWithTax
- discounts {
- description
- amountWithTax
- }
- productVariant {
- id
- name
- }
- }
- surcharges {
- id
- description
- sku
- price
- priceWithTax
- taxRate
- }
- payments {
- ...Payment
- }
- modifications {
- id
- note
- priceChange
- isSettled
- lines {
- orderLineId
- quantity
- }
- surcharges {
- id
- }
- payment {
- id
- state
- amount
- method
- }
- refund {
- id
- state
- total
- paymentId
- }
- }
- promotions {
- id
- name
- couponCode
- }
- discounts {
- description
- adjustmentSource
- amount
- amountWithTax
- }
- shippingAddress {
- ...ShippingAddress
- }
- billingAddress {
- ...ShippingAddress
- }
- shippingLines {
- id
- discountedPriceWithTax
- shippingMethod {
- id
- name
- }
- }
- }
- `,
- [paymentFragment, shippingAddressFragment],
- );
- export const promotionFragment = graphql(
- `
- fragment Promotion on Promotion {
- id
- createdAt
- updatedAt
- couponCode
- startsAt
- endsAt
- name
- description
- enabled
- perCustomerUsageLimit
- usageLimit
- conditions {
- ...ConfigurableOperation
- }
- actions {
- ...ConfigurableOperation
- }
- translations {
- id
- languageCode
- name
- description
- }
- }
- `,
- [configurableFragment],
- );
- export const zoneFragment = graphql(
- `
- fragment Zone on Zone {
- id
- name
- members {
- ...Country
- }
- }
- `,
- [countryFragment],
- );
- export const taxRateFragment = graphql(`
- fragment TaxRate on TaxRate {
- id
- name
- enabled
- value
- category {
- id
- name
- }
- zone {
- id
- name
- }
- customerGroup {
- id
- name
- }
- }
- `);
- export const currentUserFragment = graphql(`
- fragment CurrentUser on CurrentUser {
- id
- identifier
- channels {
- code
- token
- permissions
- }
- }
- `);
- export const variantWithStockFragment = graphql(`
- fragment VariantWithStock on ProductVariant {
- id
- stockOnHand
- stockAllocated
- stockMovements {
- items {
- ... on StockMovement {
- id
- type
- quantity
- }
- }
- totalItems
- }
- }
- `);
- export const fulfillmentFragment = graphql(`
- fragment Fulfillment on Fulfillment {
- id
- state
- nextStates
- method
- trackingCode
- lines {
- orderLineId
- quantity
- }
- }
- `);
- export const channelFragment = graphql(`
- fragment Channel on Channel {
- id
- code
- token
- currencyCode
- availableCurrencyCodes
- defaultCurrencyCode
- defaultLanguageCode
- defaultShippingZone {
- id
- }
- defaultTaxZone {
- id
- }
- pricesIncludeTax
- }
- `);
- export const globalSettingsFragment = graphql(`
- fragment GlobalSettings on GlobalSettings {
- id
- availableLanguages
- trackInventory
- outOfStockThreshold
- serverConfig {
- orderProcess {
- name
- to
- }
- permittedAssetTypes
- permissions {
- name
- description
- assignable
- }
- customFieldConfig {
- Customer {
- ... on CustomField {
- name
- }
- }
- }
- }
- }
- `);
- export const customerGroupFragment = graphql(`
- fragment CustomerGroup on CustomerGroup {
- id
- name
- customers {
- items {
- id
- }
- totalItems
- }
- }
- `);
- export const productOptionGroupFragment = graphql(`
- fragment ProductOptionGroup on ProductOptionGroup {
- id
- code
- name
- options {
- id
- code
- name
- }
- translations {
- id
- languageCode
- name
- }
- }
- `);
- export const productWithOptionsFragment = graphql(`
- fragment ProductWithOptions on Product {
- id
- optionGroups {
- id
- code
- options {
- id
- code
- }
- }
- }
- `);
- export const shippingMethodFragment = graphql(`
- fragment ShippingMethod on ShippingMethod {
- id
- code
- name
- description
- calculator {
- code
- args {
- name
- value
- }
- }
- checker {
- code
- args {
- name
- value
- }
- }
- }
- `);
|