You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describing params with #[graphql(description = "Search term")] term: String pattern attached to the parameter results in no generated docs for the param. Instead, we need to describe params in the method annotation, like
#[graphql(
description = "Recommend wallets to follow.",
arguments(
wallet(description = "A user wallet public key"),
limit(description = "The query record limit"),
offset(description = "The query record offset")
)
)]
The text was updated successfully, but these errors were encountered:
Describing params with
#[graphql(description = "Search term")] term: String
pattern attached to the parameter results in no generated docs for the param. Instead, we need to describe params in the method annotation, likeThe text was updated successfully, but these errors were encountered: