What do 3 dots/periods/ellipsis in a relay/graphql query mean?
There are two uses of … related to fragments. Incorporating a fragment by reference query Foo { user(id: 4) { …userFields } } fragment userFields on User { name } Has the effect of composing the fields from the fragment into the embedding query: query Foo { user(id: 4) { name } } Note that … Read more