saleor-dashboard/src/fragments/auth.ts

18 lines
221 B
TypeScript
Raw Normal View History

import gql from "graphql-tag";
export const fragmentUser = gql`
fragment User on User {
id
email
firstName
lastName
userPermissions {
code
name
}
avatar {
url
}
}
`;