Skip to content

Commit

Permalink
graphql validation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Elizaveta Yakovleva committed Jun 14, 2023
1 parent 908d699 commit 1bc0f89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/graphql/typedefinitions/inputs.graphqls
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
input UserInput {
firstName: String @NotBlank
lastName: String @NotBlank
email: String @NotBlank
phone: String @NotBlank
firstName: String! @NotBlank
lastName: String! @NotBlank
email: String! @NotBlank
phone: String! @NotBlank
age: Int
gender: Gender
height: Float
Expand Down

0 comments on commit 1bc0f89

Please sign in to comment.