feat: add version info

This commit is contained in:
Lakhan Samani
2022-03-09 11:53:34 +05:30
parent 157b13baa7
commit dd64aa2e79
11 changed files with 73 additions and 27 deletions

View File

@@ -1343,6 +1343,7 @@ input SignUpInput {
password: String!
confirm_password: String!
roles: [String!]
scope: [String!]
}
input LoginInput {
@@ -7298,6 +7299,14 @@ func (ec *executionContext) unmarshalInputSignUpInput(ctx context.Context, obj i
if err != nil {
return it, err
}
case "scope":
var err error
ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("scope"))
it.Scope, err = ec.unmarshalOString2ᚕstringᚄ(ctx, v)
if err != nil {
return it, err
}
}
}