Skip to content

Commit

Permalink
Merge pull request #27 from daniel-de-wit/add-backtics-to-graphql-inp…
Browse files Browse the repository at this point in the history
…ut-examples

Add backtics to GraphQL input descriptions
  • Loading branch information
wimski committed Apr 23, 2021
2 parents 2d11698 + bb01605 commit 1bd65e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphql/sanctum.graphql
Expand Up @@ -44,7 +44,7 @@ input RegisterInput {
The url used to verify the email address.
Use __ID__ and __HASH__ to inject values.
e.g; https://my-front-end.com/verify-email?id=__ID__&hash=__HASH__
e.g; `https://my-front-end.com/verify-email?id=__ID__&hash=__HASH__`
"""
input VerificationUrlInput {
url: String! @rules(apply: ["required", "url"])
Expand All @@ -59,7 +59,7 @@ input ForgotPasswordInput {
The url used to reset the password.
Use the `__EMAIL__` and `__TOKEN__` placeholders to inject the reset password email and token.
e.g; https://my-front-end.com?reset-password?email=__EMAIL__&token=__TOKEN__
e.g; `https://my-front-end.com?reset-password?email=__EMAIL__&token=__TOKEN__`
"""
input ResetPasswordUrlInput {
url: String! @rules(apply: ["required", "url"])
Expand Down

0 comments on commit 1bd65e7

Please sign in to comment.