index.ts
505 Bytes
import { gql } from '@apollo/client';
// eslint-disable-next-line import/prefer-default-export
export const FIND_USER_CURRENT_NFL_SEASON_PLAYER = gql`
query FindCurrentNflSeasonPlayer($playerId: String!) {
currentNflSeason {
id
player(id: $playerId) {
id
lastName
firstName
fantasyPointsPerGame
playerPositions
value
details {
profilePhotos
}
team {
abbreviation
}
}
}
}
`;