I was able to get the username
s like this:
query {
allUsers {
edges {
node {
username
}
}
}
}
But when I tried the same for the xxx
node like this:
query {
allUsers {
edges {
node {
xxx
}
}
}
}
It says:
Field "xxx" of type "NoteObjectConnection" must have a sub selection.
How can I read the data in xxx
node?