saleor-dashboard/src/fragments/address.ts

23 lines
328 B
TypeScript
Raw Normal View History

import gql from "graphql-tag";
export const fragmentAddress = gql`
fragment AddressFragment on Address {
city
cityArea
companyName
country {
__typename
code
country
}
countryArea
firstName
id
lastName
phone
postalCode
streetAddress1
streetAddress2
}
`;