rano/graph/auth.gql.ts

10 lines
112 B
TypeScript
Raw Normal View History

2024-11-01 23:19:56 +05:30
import { gql } from '@urql/svelte';
export const QryMe = gql`
query Me {
me {
id
displayName
}
}
`;