tokenAttributes.api.ts 261 B

12345678910111213141516
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const TokenAttributesFragmentDoc = gql`
  4. fragment tokenAttributes on Token {
  5. id
  6. user {
  7. id
  8. }
  9. name
  10. preferences
  11. expiresAt
  12. lastUsedAt
  13. createdAt
  14. }
  15. `;