-
Notifications
You must be signed in to change notification settings - Fork 726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot convert value of type 'GraphQLNullable<[String]>' to expected argument type '[String?]' #3340
Comments
|
Hello @calvincestari , yes I have used status: [String] in schema but still getting issue |
Create a sample app demonstrating the problem that we can look at please. |
Hello @calvincestari code |
In the schema screenshot,
|
Hello @calvincestari , If I used type (GraphQLNullable<[String?]>) then it's pass input value like [Optional("black")] |
@calvincestari , is there any way to configure the file to add any setting value handle automatically?, then let me know. |
Is the JSON actually getting sent like that or only when you print it to the debug console?
I don't understand your question. A setting to handle what value? It is |
I'm closing this issue due to inactivity. If this is still unresolved, feel free to provide more information and we can re-open this, or create a new issue. |
Do you have any feedback for the maintainers? Please tell us by taking a one-minute survey. Your responses will help us understand Apollo iOS usage and allow us to serve you better. |
Question
If I used [String?] array with GraphQLNullable then it's passed request value like some([Optional("black")]) and that create issue I want to pass value some(["black", "black1"]) like this. How to remove GraphQLNullable<[String?]> and used GraphQLNullable<[String]>
The text was updated successfully, but these errors were encountered: