import gql from "graphql-tag"; export const CURRENT_USER = gql` query CurrentUser { me { id email name team { id title slideshows { id title frames { id title top left scale slide { id } } } users { id email name profilePictureUrl } } } } `; export const GET_SLIDESHOW_STATE = gql` query GetSlideshowState($id: ID!) { getSlideshowState(id: $id) { subscribers mouseInfo slides subscriberSelectedElements } } `; export const CURRENT_USER_WITH_SETTINGS = gql` query CurrentUserWithSettings { me { id email name profilePictureUrl team { id title users { id name email profilePictureUrl } } } } `;