python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can a nested field in graphQL query get its own arguments
I'm working on a cursor based pagination that requires the a nested field to access the args. So far, i've been unable to get the args to its desired field.
type Game {
players(first: Int, afte...
Mhd
Votes: 0
Answers: 1
Apollo cache typePolicies: same field on multiple parents/queries
I have the same fields on multiple parents (different objects) in Apollo cache.
I want to do some logic in the merge function in typePolicies.
However, when these fields are repeated on many places co...

rmartrenado
Votes: 0
Answers: 0
Apollo Client - useQuery - how to set parameter as optional
I have this query:
const CURRENT_MONTH_BY_USER = gql`
query getCurrentMonthByUser($selectedMonth: String!, $username: String) {
getCurrentMonthByUser(selectedMonth: $selectedMonth, username: $us...
smoothlikebutter
Votes: 0
Answers: 1
React Router | URL parameter as variable *without* useParams?
I'm currently working on this page of the Apollo Odyssey tutorial: https://www.apollographql.com/tutorials/lift-off-part3/the-usequery-hook---with-variables
I came to an interesting realization here: ...
Acea Spades
Votes: 0
Answers: 1