Skip to content
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

feature: Reduce Generated Schema Types #601

Merged
merged 8 commits into from
Feb 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changing deprecation attribute to comment
  • Loading branch information
BobaFetters committed Feb 14, 2025
commit d75c0978afaa8fb59240d099bab9a8d91d612460
2 changes: 1 addition & 1 deletion apollo-ios/Sources/ApolloAPI/SchemaTypes/Object.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public struct Object: Hashable, Sendable {
}

/// A list of the interfaces implemented by the type.
@available(*, deprecated, message: "This property will be removed in version 2.0. To check if an Object implements an interface please use the 'implements(_)' function.")
/// Deprecated: This property will be removed in version 2.0. To check if an Object implements an interface please use the 'implements(_)' function.
public let implementedInterfaces: [Interface]

/// The name of the type.
Expand Down
Loading