Add client side start and end time

This commit is contained in:
2024-10-16 15:24:08 -06:00
parent e431a1751f
commit d619751144
4 changed files with 24 additions and 1 deletions

7
src/client-schema.gql Normal file
View File

@@ -0,0 +1,7 @@
# see: https://www.apollographql.com/docs/react/local-state/managing-state-with-field-policies/
directive @client on FIELD
extend type ShotGQL {
startTime: Float!
endTime: Float!
}