userDeviceAttributes.api.ts 329 B

1234567891011121314151617181920
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const UserDeviceAttributesFragmentDoc = gql`
  4. fragment userDeviceAttributes on UserDevice {
  5. id
  6. userId
  7. name
  8. os
  9. browser
  10. location
  11. deviceDetails
  12. locationDetails
  13. fingerprint
  14. userAgent
  15. ip
  16. createdAt
  17. updatedAt
  18. }
  19. `;