session.api.ts 205 B

123456789101112
  1. import * as Types from '#shared/graphql/types.ts';
  2. import gql from 'graphql-tag';
  3. export const SessionFragmentDoc = gql`
  4. fragment session on Session {
  5. id
  6. afterAuth {
  7. type
  8. data
  9. }
  10. }
  11. `;