From d2801879d19ba30dc6158bbf86bd80e0a95db678 Mon Sep 17 00:00:00 2001 From: gh-action-runner Date: Mon, 2 Dec 2024 18:06:09 +0000 Subject: [PATCH] Squashed 'apollo-ios/' changes from 38eef8f5..daa2c1e4 daa2c1e4 feature: @oneOf input object support (apollographql/apollo-ios-dev#537) git-subtree-dir: apollo-ios git-subtree-split: daa2c1e408304c4943d12f5f1445b4fb2e7f4254 --- Sources/ApolloAPI/SchemaTypes/InputObject.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/ApolloAPI/SchemaTypes/InputObject.swift b/Sources/ApolloAPI/SchemaTypes/InputObject.swift index 36c6f477d..16935e11e 100644 --- a/Sources/ApolloAPI/SchemaTypes/InputObject.swift +++ b/Sources/ApolloAPI/SchemaTypes/InputObject.swift @@ -44,3 +44,5 @@ public struct InputDict: GraphQLOperationVariableValue, Hashable { } } + +public protocol OneOfInputObject: InputObject { }