···743743744744export type PlayAllTracksMutation = { __typename?: 'Mutation', playAllTracks: number };
745745746746+export type SeekMutationVariables = Exact<{
747747+ elapsed: Scalars['Int']['input'];
748748+ offset: Scalars['Int']['input'];
749749+}>;
750750+751751+752752+export type SeekMutation = { __typename?: 'Mutation', play: number };
753753+746754export type GetCurrentTrackQueryVariables = Exact<{ [key: string]: never; }>;
747755748756···18371845export type PlayAllTracksMutationHookResult = ReturnType<typeof usePlayAllTracksMutation>;
18381846export type PlayAllTracksMutationResult = Apollo.MutationResult<PlayAllTracksMutation>;
18391847export type PlayAllTracksMutationOptions = Apollo.BaseMutationOptions<PlayAllTracksMutation, PlayAllTracksMutationVariables>;
18481848+export const SeekDocument = gql`
18491849+ mutation Seek($elapsed: Int!, $offset: Int!) {
18501850+ play(elapsed: $elapsed, offset: $offset)
18511851+}
18521852+ `;
18531853+export type SeekMutationFn = Apollo.MutationFunction<SeekMutation, SeekMutationVariables>;
18541854+18551855+/**
18561856+ * __useSeekMutation__
18571857+ *
18581858+ * To run a mutation, you first call `useSeekMutation` within a React component and pass it any options that fit your needs.
18591859+ * When your component renders, `useSeekMutation` returns a tuple that includes:
18601860+ * - A mutate function that you can call at any time to execute the mutation
18611861+ * - An object with fields that represent the current status of the mutation's execution
18621862+ *
18631863+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
18641864+ *
18651865+ * @example
18661866+ * const [seekMutation, { data, loading, error }] = useSeekMutation({
18671867+ * variables: {
18681868+ * elapsed: // value for 'elapsed'
18691869+ * offset: // value for 'offset'
18701870+ * },
18711871+ * });
18721872+ */
18731873+export function useSeekMutation(baseOptions?: Apollo.MutationHookOptions<SeekMutation, SeekMutationVariables>) {
18741874+ const options = {...defaultOptions, ...baseOptions}
18751875+ return Apollo.useMutation<SeekMutation, SeekMutationVariables>(SeekDocument, options);
18761876+ }
18771877+export type SeekMutationHookResult = ReturnType<typeof useSeekMutation>;
18781878+export type SeekMutationResult = Apollo.MutationResult<SeekMutation>;
18791879+export type SeekMutationOptions = Apollo.BaseMutationOptions<SeekMutation, SeekMutationVariables>;
18401880export const GetCurrentTrackDocument = gql`
18411881 query GetCurrentTrack {
18421882 currentTrack {