Skip to content

Commit

Permalink
chore: display locality and region in the order view
Browse files Browse the repository at this point in the history
  • Loading branch information
belsman committed Aug 14, 2024
1 parent e348434 commit 88aeaf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/core/graphql/src/lib/documents/fragments/order.gql
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ fragment OrderFragment on IoRestorecommerceOrderOrder {
id
street
buildingNumber
locality
region
businessAddress {
name
}
Expand Down
8 changes: 8 additions & 0 deletions packages/core/graphql/src/lib/generated/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6655,6 +6655,8 @@ export type OrderFragmentFragment = {
id?: string | null;
street?: string | null;
buildingNumber?: string | null;
locality?: string | null;
region?: string | null;
postcode?: string | null;
businessAddress?: {
__typename?: 'IoRestorecommerceAddressBusinessAddress';
Expand Down Expand Up @@ -9098,6 +9100,8 @@ export type OrderingOrderMutateMutation = {
id?: string | null;
street?: string | null;
buildingNumber?: string | null;
locality?: string | null;
region?: string | null;
postcode?: string | null;
businessAddress?: {
__typename?: 'IoRestorecommerceAddressBusinessAddress';
Expand Down Expand Up @@ -9725,6 +9729,8 @@ export type OrderingOrderReadQuery = {
id?: string | null;
street?: string | null;
buildingNumber?: string | null;
locality?: string | null;
region?: string | null;
postcode?: string | null;
businessAddress?: {
__typename?: 'IoRestorecommerceAddressBusinessAddress';
Expand Down Expand Up @@ -10160,6 +10166,8 @@ export const OrderFragmentFragmentDoc = gql`
id
street
buildingNumber
locality
region
businessAddress {
name
}
Expand Down

0 comments on commit 88aeaf9

Please sign in to comment.