I have 2 schema Assignee and Task
type Assignee {
_id: String!
name: String!
gender: String!
}
#import "../assignees/schema.graphql"
type Task {
_id: String!
title: String!
description: String
assignee: Assignee
}
It work fine.
But still work, if I remove #import ....?
Could explain me?
(I use merge-graphql-schemas to merge)
I have 2 schema
Assignee and TaskIt work fine.
But still work, if I remove
#import ....?Could explain me?
(I use
merge-graphql-schemasto merge)