mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
GraphQLID is always Non-Nullable (#15465)
This commit is contained in:
@@ -414,7 +414,7 @@ export class GraphQLService {
|
||||
}
|
||||
|
||||
if (collection.primary === field.field) {
|
||||
type = GraphQLID;
|
||||
type = GraphQLNonNull(GraphQLID);
|
||||
}
|
||||
|
||||
acc[field.field] = {
|
||||
|
||||
Reference in New Issue
Block a user