0
I have method:
@GraphQLQuery(name = "events", description = "get all events")
public List<String> getEvents() {
return List.of("test", "test2");
}
I need to create query for clients. below example not work:
query events{
events{
... String
}
}
what is wrong?
Not the answer you're looking for? Browse other questions tagged
or ask your own question.
or ask your own question.
|