Changelog
0.0.30
Fields on Query
, Mutation
and Subscription
may now be defined using the new docblock tags @gqlQueryField
, @gqlMutationField
and @gqlSubscriptionField
. These tags can be added to functions or static methods.
/** @gqlQueryField */
export function greeting(): string {
return "Hello world";
}
@gqlField
docblock tag.