@@ -279,7 +279,6 @@ public func graphqlSubscribe(
279279
280280// MARK: Async/Await
281281
282- @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
283282/// This is the primary entry point function for fulfilling GraphQL operations
284283/// by parsing, validating, and executing a GraphQL document along side a
285284/// GraphQL schema.
@@ -315,6 +314,7 @@ public func graphqlSubscribe(
315314/// `errors` if an error occurs only in a specific field. If that happens the value of that
316315/// field will be `null` and there will be an error inside `errors` specifying the reason for
317316/// the failure and the path of the failed field.
317+ @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
318318public func graphql(
319319 queryStrategy: QueryFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
320320 mutationStrategy: MutationFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
@@ -343,7 +343,6 @@ public func graphql(
343343 ) . get ( )
344344}
345345
346- @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
347346/// This is the primary entry point function for fulfilling GraphQL subscription
348347/// operations by parsing, validating, and executing a GraphQL subscription
349348/// document along side a GraphQL schema.
@@ -382,6 +381,7 @@ public func graphql(
382381/// If that happens the value of that field will be `null` and there
383382/// will be an error inside `errors` specifying the reason for the failure and the path of the
384383/// failed field.
384+ @available ( macOS 10 . 15 , iOS 15 , watchOS 8 , tvOS 15 , * )
385385public func graphqlSubscribe(
386386 queryStrategy: QueryFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
387387 mutationStrategy: MutationFieldExecutionStrategy = SerialFieldExecutionStrategy ( ) ,
0 commit comments