You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.
Apollo Federation supports multiple primary keys. We could implement this in graphene-federation in one of two ways:
# Multiple key decorators
@key("id")
@key("username")
class Person(ObjectType):
pass
# multiple keys in a single decorator
@key("id", "username")
class Person(ObjectType):
pass
Can you let me know if you have a preference and I'll send a PR.
The text was updated successfully, but these errors were encountered:
Apollo Federation supports multiple primary keys. We could implement this in
graphene-federation
in one of two ways:Can you let me know if you have a preference and I'll send a PR.
The text was updated successfully, but these errors were encountered: