Skip to content

Commit 1c7f730

Browse files
committed
Use ShopStaging instead of Shop type
1 parent 6c2d02c commit 1c7f730

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/fragments/shop.staging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { gql } from "@apollo/client";
22

33
export const shopFragment = gql`
4-
fragment Shop on Shop {
4+
fragment ShopStaging on Shop {
55
companyAddress {
66
...Address
77
}

src/siteSettings/mutations.staging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const shopSettingsUpdateStaging = gql`
1212
message
1313
}
1414
shop {
15-
...Shop
15+
...ShopStaging
1616
}
1717
}
1818
shopAddressUpdate(input: $addressInput) {

src/siteSettings/queries.staging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { gql } from "@apollo/client";
33
export const siteSettingsStaging = gql`
44
query SiteSettingsStaging {
55
shop {
6-
...Shop
6+
...ShopStaging
77
}
88
}
99
`;

0 commit comments

Comments
 (0)