debianize-mobilizon/src/graphql/location.ts
Thomas Citharel 2e72f6faf4
build: switch from yarn to npm to manage js dependencies and move js contents to root
yarn v1 is being deprecated and starts to have some issues

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2023-11-14 17:24:42 +01:00

35 lines
653 B
TypeScript

import gql from "graphql-tag";
export const CURRENT_USER_LOCATION_CLIENT = gql`
query currentUserLocation {
currentUserLocation @client {
lat
lon
accuracy
isIPLocation
name
picture
}
}
`;
export const UPDATE_CURRENT_USER_LOCATION_CLIENT = gql`
mutation UpdateCurrentUserLocation(
$lat: Float
$lon: Float
$accuracy: Int
$isIPLocation: Boolean
$name: String
$picture: pictureInfoElement
) {
updateCurrentUserLocation(
lat: $lat
lon: $lon
accuracy: $accuracy
isIPLocation: $isIPLocation
name: $name
picture: $picture
) @client
}
`;