rano/graph/auth.gql.ts

10 lines
112 B
TypeScript
Raw Normal View History

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