-
Notifications
You must be signed in to change notification settings - Fork 731
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
Variables on GraphQLOperation - Refactor #1963
Variables on GraphQLOperation - Refactor #1963
Conversation
import Foundation | ||
|
||
@dynamicMemberLookup | ||
public enum GraphQLNullable<Wrapped>: ExpressibleByNilLiteral { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw there is already a reference to the documentation in InputValue.swift
, is it worth linking to here too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah will add a reference to docs here
@@ -13,25 +13,32 @@ public protocol RequestBodyCreator { | |||
/// - sendQueryDocument: Whether or not to send the full query document. Should default to `true`. | |||
/// - autoPersistQuery: Whether to use auto-persisted query information. Should default to `false`. | |||
/// - Returns: The created `GraphQLMap` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// - Returns: The created `GraphQLMap` | |
/// - Returns: The created `JSONEncodableDictionary` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
GraphQLOptional
toGraphQLNullable
GraphQLMap
toJSONEncodableDictionary
GraphQLOperation
more strongly typed.