How to add type extensions in fusion gateway? #6985
Unanswered
liyanjie2048
asked this question in
Q&A
Replies: 1 comment
-
@liyanjie2048 type User
{
id: ID!
name: String
} serivce b type Order
{
id: ID!
user: User
}
type User
{
id: ID!
name: String
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm new to learning Hotchocolate Fusion. I want to know how stitch multiple schemas from different service and extend types in this situation:
I wonder how to add "Orders" to "User" type and "User" to "Order" type and query data.
Is there any way like "AddTypeExtensions" in Stitching Gateway or docs to learn?
Beta Was this translation helpful? Give feedback.
All reactions