Selecting a user with their profile pic (from GraphQL introduction).
{
user(id: 3500401) {
id,
name,
isViewerFriend,
profilePicture(size: 50) {
uri,
width,
height
}
}
}would be specified by a url like this
/user?id=eq.3500401&profilePicture.size=eq.50&select=id,name,isViewerFriend,profilePicture{uri,width,height}