chore: cherry pick missing from migrations
This commit is contained in:
committed by
Elliot DeNolf
parent
2198445df9
commit
fc1f4c494f
@@ -13,7 +13,7 @@ It's often best practice to write your Collections in separate files and then im
|
||||
## Options
|
||||
|
||||
| Option | Description |
|
||||
|--------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
|--------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| **`slug`** * | Unique, URL-friendly string that will act as an identifier for this Collection. |
|
||||
| **`fields`** * | Array of field types that will determine the structure and functionality of the data stored within this Collection. [Click here](/docs/fields/overview) for a full list of field types as well as how to configure them. |
|
||||
| **`indexes`** * | Array of database indexes to create, including compound indexes that have multiple fields. |
|
||||
@@ -25,8 +25,8 @@ It's often best practice to write your Collections in separate files and then im
|
||||
| **`upload`** | Specify options if you would like this Collection to support file uploads. For more, consult the [Uploads](/docs/upload/overview) documentation. |
|
||||
| **`timestamps`** | Set to false to disable documents' automatically generated `createdAt` and `updatedAt` timestamps. |
|
||||
| **`versions`** | Set to true to enable default options, or configure with object properties. [More](/docs/versions/overview#collection-config) |
|
||||
| **`endpoints`** | Add custom routes to the REST API. [More](/docs/rest-api/overview#custom-endpoints) |
|
||||
| **`graphQL`** | An object with `singularName` and `pluralName` strings used in schema generation. Auto-generated from slug if not defined. |
|
||||
| **`endpoints`** | Add custom routes to the REST API. Set to `false` to disable routes. [More](/docs/rest-api/overview#custom-endpoints) |
|
||||
| **`graphQL`** | An object with `singularName` and `pluralName` strings used in schema generation. Auto-generated from slug if not defined. Set to `false` to disable GraphQL. |
|
||||
| **`typescript`** | An object with property `interface` as the text used in schema generation. Auto-generated from slug if not defined. |
|
||||
| **`defaultSort`** | Pass a top-level field to sort by default in the collection List view. Prefix the name of the field with a minus symbol ("-") to sort in descending order. |
|
||||
| **`pagination`** | Set pagination-specific options for this collection. [More](#pagination) |
|
||||
|
||||
@@ -25,6 +25,10 @@ import deleteByID from './requestHandlers/deleteByID';
|
||||
const buildEndpoints = (collection: SanitizedCollectionConfig): Endpoint[] => {
|
||||
const endpoints = [...collection.endpoints];
|
||||
|
||||
if (endpoints === false) {
|
||||
return [];
|
||||
}
|
||||
|
||||
if (collection.auth) {
|
||||
if (!collection.auth.disableLocalStrategy) {
|
||||
if (collection.auth.verify) {
|
||||
|
||||
@@ -309,9 +309,9 @@ export type CollectionConfig = {
|
||||
afterForgotPassword?: AfterForgotPasswordHook[];
|
||||
};
|
||||
/**
|
||||
* Custom rest api endpoints
|
||||
* Custom rest api endpoints, set false to disable all rest endpoints for this collection.
|
||||
*/
|
||||
endpoints?: Omit<Endpoint, 'root'>[]
|
||||
endpoints?: Omit<Endpoint, 'root'>[] | false;
|
||||
/**
|
||||
* Access control
|
||||
*/
|
||||
@@ -357,7 +357,7 @@ export interface SanitizedCollectionConfig extends Omit<DeepRequired<CollectionC
|
||||
upload: Upload;
|
||||
fields: Field[];
|
||||
versions: SanitizedCollectionVersions;
|
||||
endpoints: Omit<Endpoint, 'root'>[];
|
||||
endpoints: Omit<Endpoint, 'root'>[] | false;
|
||||
}
|
||||
|
||||
export type Collection = {
|
||||
|
||||
@@ -37,6 +37,7 @@ function initCollectionsGraphQL(payload: Payload): void {
|
||||
const {
|
||||
config,
|
||||
config: {
|
||||
fields,
|
||||
graphQL = {} as SanitizedCollectionConfig['graphQL'],
|
||||
versions,
|
||||
},
|
||||
@@ -44,8 +45,6 @@ function initCollectionsGraphQL(payload: Payload): void {
|
||||
|
||||
if (!graphQL) return;
|
||||
|
||||
const { fields } = config;
|
||||
|
||||
let singularName;
|
||||
let pluralName;
|
||||
const fromSlug = formatNames(collection.config.slug);
|
||||
|
||||
@@ -5,16 +5,19 @@ const component = joi.alternatives().try(
|
||||
joi.func(),
|
||||
);
|
||||
|
||||
export const endpointsSchema = joi.array().items(joi.object({
|
||||
path: joi.string(),
|
||||
method: joi.string().valid('get', 'head', 'post', 'put', 'patch', 'delete', 'connect', 'options'),
|
||||
root: joi.bool(),
|
||||
handler: joi.alternatives().try(
|
||||
joi.array().items(joi.func()),
|
||||
joi.func(),
|
||||
),
|
||||
custom: joi.object().pattern(joi.string(), joi.any()),
|
||||
}));
|
||||
export const endpointsSchema = joi.alternatives().try(
|
||||
joi.array().items(joi.object({
|
||||
path: joi.string(),
|
||||
method: joi.string().valid('get', 'head', 'post', 'put', 'patch', 'delete', 'connect', 'options'),
|
||||
root: joi.bool(),
|
||||
handler: joi.alternatives().try(
|
||||
joi.array().items(joi.func()),
|
||||
joi.func(),
|
||||
),
|
||||
custom: joi.object().pattern(joi.string(), joi.any()),
|
||||
})),
|
||||
joi.boolean(),
|
||||
);
|
||||
|
||||
export default joi.object({
|
||||
serverURL: joi.string()
|
||||
|
||||
@@ -10,6 +10,10 @@ import docAccessRequestHandler from './requestHandlers/docAccess';
|
||||
const buildEndpoints = (global: SanitizedGlobalConfig): Endpoint[] => {
|
||||
const endpoints = [...global.endpoints];
|
||||
|
||||
if (endpoints === false) {
|
||||
return [];
|
||||
}
|
||||
|
||||
if (global.versions) {
|
||||
endpoints.push(
|
||||
{
|
||||
|
||||
@@ -18,8 +18,8 @@ const sanitizeGlobals = (collections: CollectionConfig[], globals: GlobalConfig[
|
||||
// Ensure that collection has required object structure
|
||||
// /////////////////////////////////
|
||||
|
||||
sanitizedGlobal.endpoints = sanitizedGlobal.endpoints ?? [];
|
||||
if (!sanitizedGlobal.hooks) sanitizedGlobal.hooks = {};
|
||||
if (!sanitizedGlobal.endpoints) sanitizedGlobal.endpoints = [];
|
||||
if (!sanitizedGlobal.access) sanitizedGlobal.access = {};
|
||||
if (!sanitizedGlobal.admin) sanitizedGlobal.admin = {};
|
||||
|
||||
|
||||
@@ -38,9 +38,12 @@ const globalSchema = joi.object().keys({
|
||||
typescript: joi.object().keys({
|
||||
interface: joi.string(),
|
||||
}),
|
||||
graphQL: joi.object().keys({
|
||||
name: joi.string(),
|
||||
}),
|
||||
graphQL: joi.alternatives().try(
|
||||
joi.object().keys({
|
||||
name: joi.string(),
|
||||
}),
|
||||
joi.boolean(),
|
||||
),
|
||||
hooks: joi.object({
|
||||
beforeValidate: joi.array().items(joi.func()),
|
||||
beforeChange: joi.array().items(joi.func()),
|
||||
|
||||
@@ -111,7 +111,7 @@ export type GlobalConfig = {
|
||||
label?: Record<string, string> | string
|
||||
graphQL?: {
|
||||
name?: string
|
||||
}
|
||||
} | false
|
||||
/**
|
||||
* Options used in typescript generation
|
||||
*/
|
||||
@@ -129,7 +129,7 @@ export type GlobalConfig = {
|
||||
beforeRead?: BeforeReadHook[]
|
||||
afterRead?: AfterReadHook[]
|
||||
}
|
||||
endpoints?: Omit<Endpoint, 'root'>[],
|
||||
endpoints?: Omit<Endpoint, 'root'>[] | false
|
||||
access?: {
|
||||
read?: Access;
|
||||
readDrafts?: Access;
|
||||
@@ -144,7 +144,7 @@ export type GlobalConfig = {
|
||||
|
||||
export interface SanitizedGlobalConfig extends Omit<DeepRequired<GlobalConfig>, 'fields' | 'versions' | 'endpoints'> {
|
||||
fields: Field[]
|
||||
endpoints: Omit<Endpoint, 'root'>[],
|
||||
endpoints: Omit<Endpoint, 'root'>[] | false
|
||||
versions: SanitizedGlobalVersions
|
||||
}
|
||||
|
||||
@@ -157,5 +157,5 @@ export type Globals = {
|
||||
mutationInputType: GraphQLNonNull<any>
|
||||
versionType?: GraphQLObjectType
|
||||
}
|
||||
}
|
||||
} | false
|
||||
}
|
||||
|
||||
@@ -25,9 +25,14 @@ function initGlobalsGraphQL(payload: Payload): void {
|
||||
const {
|
||||
fields,
|
||||
versions,
|
||||
graphQL,
|
||||
} = global;
|
||||
|
||||
const formattedName = global.graphQL?.name ? global.graphQL.name : singular(toWords(global.slug, true));
|
||||
if (graphQL === false) {
|
||||
return;
|
||||
}
|
||||
|
||||
const formattedName = graphQL?.name ? graphQL.name : singular(toWords(global.slug, true));
|
||||
|
||||
const forceNullableObjectType = Boolean(versions?.drafts);
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import { GraphQLJSONObject } from 'graphql-type-json';
|
||||
import { GraphQLBoolean, GraphQLNonNull, GraphQLObjectType } from 'graphql';
|
||||
import formatName from '../utilities/formatName';
|
||||
@@ -128,10 +127,12 @@ type BuildPolicyType = {
|
||||
})
|
||||
export function buildPolicyType(args: BuildPolicyType): GraphQLObjectType {
|
||||
const { typeSuffix, entity, type, scope } = args;
|
||||
const { slug } = entity;
|
||||
const { slug, graphQL, fields, versions } = entity;
|
||||
|
||||
let operations = [];
|
||||
|
||||
if (graphQL === false) return null;
|
||||
|
||||
if (type === 'collection') {
|
||||
operations = ['create', 'read', 'update', 'delete'];
|
||||
|
||||
@@ -139,7 +140,7 @@ export function buildPolicyType(args: BuildPolicyType): GraphQLObjectType {
|
||||
operations.push('unlock');
|
||||
}
|
||||
|
||||
if (entity.versions) {
|
||||
if (versions) {
|
||||
operations.push('readVersions');
|
||||
}
|
||||
|
||||
@@ -149,7 +150,7 @@ export function buildPolicyType(args: BuildPolicyType): GraphQLObjectType {
|
||||
name: collectionTypeName,
|
||||
fields: buildEntityPolicy({
|
||||
name: slug,
|
||||
entityFields: entity.fields,
|
||||
entityFields: fields,
|
||||
operations,
|
||||
scope,
|
||||
}),
|
||||
@@ -168,7 +169,7 @@ export function buildPolicyType(args: BuildPolicyType): GraphQLObjectType {
|
||||
return new GraphQLObjectType({
|
||||
name: globalTypeName,
|
||||
fields: buildEntityPolicy({
|
||||
name: entity?.graphQL?.name || slug,
|
||||
name: (entity.graphQL) ? entity?.graphQL?.name || slug : slug,
|
||||
entityFields: entity.fields,
|
||||
operations,
|
||||
scope,
|
||||
@@ -184,6 +185,9 @@ export default function buildPoliciesType(payload: Payload): GraphQLObjectType {
|
||||
};
|
||||
|
||||
Object.values(payload.config.collections).forEach((collection: SanitizedCollectionConfig) => {
|
||||
if (collection.graphQL === false) {
|
||||
return;
|
||||
}
|
||||
const collectionPolicyType = buildPolicyType({
|
||||
typeSuffix: 'Access',
|
||||
entity: collection,
|
||||
|
||||
@@ -232,7 +232,7 @@ export class BasePayload<TGeneratedTypes extends GeneratedTypes> {
|
||||
this.email = buildEmail(this.emailOptions, this.logger);
|
||||
this.sendEmail = sendEmail.bind(this);
|
||||
|
||||
if (!this.config.graphQL.disable && !this.config.graphQL) {
|
||||
if (!this.config.graphQL.disable) {
|
||||
registerGraphQLSchema(this);
|
||||
}
|
||||
|
||||
|
||||
@@ -11,6 +11,8 @@ export const globalSlug = 'global-endpoints';
|
||||
export const globalEndpoint = 'global';
|
||||
export const applicationEndpoint = 'path';
|
||||
export const rootEndpoint = 'root';
|
||||
export const noEndpointsCollectionSlug = 'no-endpoints';
|
||||
export const noEndpointsGlobalSlug = 'global-no-endpoints';
|
||||
|
||||
const MyConfig: Config = {
|
||||
collections: [
|
||||
@@ -57,6 +59,17 @@ const MyConfig: Config = {
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: noEndpointsCollectionSlug,
|
||||
graphQL: false,
|
||||
endpoints: false,
|
||||
fields: [
|
||||
{
|
||||
name: 'name',
|
||||
type: 'text',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
globals: [
|
||||
{
|
||||
@@ -70,6 +83,17 @@ const MyConfig: Config = {
|
||||
}],
|
||||
fields: [],
|
||||
},
|
||||
{
|
||||
slug: noEndpointsGlobalSlug,
|
||||
graphQL: false,
|
||||
endpoints: false,
|
||||
fields: [
|
||||
{
|
||||
name: 'name',
|
||||
type: 'text',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
endpoints: [
|
||||
{
|
||||
|
||||
@@ -1,6 +1,14 @@
|
||||
import { initPayloadTest } from '../helpers/configHelpers';
|
||||
import { RESTClient } from '../helpers/rest';
|
||||
import { applicationEndpoint, collectionSlug, globalEndpoint, globalSlug, rootEndpoint } from './config';
|
||||
import {
|
||||
applicationEndpoint,
|
||||
collectionSlug,
|
||||
globalEndpoint,
|
||||
globalSlug,
|
||||
noEndpointsCollectionSlug,
|
||||
noEndpointsGlobalSlug,
|
||||
rootEndpoint,
|
||||
} from './config';
|
||||
|
||||
require('isomorphic-fetch');
|
||||
|
||||
@@ -34,6 +42,16 @@ describe('Endpoints', () => {
|
||||
expect(data.name).toStrictEqual(params.name);
|
||||
expect(data.age).toStrictEqual(params.age);
|
||||
});
|
||||
|
||||
it('should disable built-in endpoints when false', async () => {
|
||||
let result;
|
||||
try {
|
||||
result = await client.endpoint(`/api/${noEndpointsCollectionSlug}`, 'get');
|
||||
} catch (err: unknown) {
|
||||
result = err;
|
||||
}
|
||||
expect(result instanceof Error).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Globals', () => {
|
||||
@@ -44,6 +62,15 @@ describe('Endpoints', () => {
|
||||
expect(status).toBe(200);
|
||||
expect(params).toMatchObject(data);
|
||||
});
|
||||
it('should disable built-in endpoints when false', async () => {
|
||||
let result;
|
||||
try {
|
||||
result = await client.endpoint(`/api/globals/${noEndpointsGlobalSlug}`, 'get');
|
||||
} catch (err: unknown) {
|
||||
result = err;
|
||||
}
|
||||
expect(result instanceof Error).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe('API', () => {
|
||||
|
||||
@@ -141,5 +141,16 @@ export default buildConfig({
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
// this should not be written to the generated schema
|
||||
slug: 'no-graphql',
|
||||
graphQL: false,
|
||||
fields: [
|
||||
{
|
||||
name: 'name',
|
||||
type: 'text',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
@@ -10,7 +10,9 @@ type Query {
|
||||
docAccessUser(id: String!): usersDocAccess
|
||||
meUser: usersMe
|
||||
initializedUser: Boolean
|
||||
Preference(key: String): Preference
|
||||
PayloadPreference(id: String!, draft: Boolean): PayloadPreference
|
||||
PayloadPreferences(where: PayloadPreference_where, draft: Boolean, page: Int, limit: Int, sort: String): PayloadPreferences
|
||||
docAccessPayloadPreference(id: String!): payload_preferencesDocAccess
|
||||
Access: Access
|
||||
}
|
||||
|
||||
@@ -1096,23 +1098,292 @@ type usersMe {
|
||||
collection: String
|
||||
}
|
||||
|
||||
type Preference {
|
||||
key: String!
|
||||
type PayloadPreference {
|
||||
id: String
|
||||
user: PayloadPreference_User_Relationship!
|
||||
key: String
|
||||
value: JSON
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
updatedAt: DateTime
|
||||
createdAt: DateTime
|
||||
}
|
||||
|
||||
type PayloadPreference_User_Relationship {
|
||||
relationTo: PayloadPreference_User_RelationTo
|
||||
value: PayloadPreference_User
|
||||
}
|
||||
|
||||
enum PayloadPreference_User_RelationTo {
|
||||
users
|
||||
}
|
||||
|
||||
union PayloadPreference_User = User
|
||||
|
||||
"""
|
||||
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
|
||||
"""
|
||||
scalar JSON
|
||||
|
||||
type PayloadPreferences {
|
||||
docs: [PayloadPreference]
|
||||
totalDocs: Int
|
||||
offset: Int
|
||||
limit: Int
|
||||
totalPages: Int
|
||||
page: Int
|
||||
pagingCounter: Int
|
||||
hasPrevPage: Boolean
|
||||
hasNextPage: Boolean
|
||||
prevPage: Int
|
||||
nextPage: Int
|
||||
}
|
||||
|
||||
input PayloadPreference_where {
|
||||
user: PayloadPreference_user_Relation
|
||||
key: PayloadPreference_key_operator
|
||||
value: PayloadPreference_value_operator
|
||||
updatedAt: PayloadPreference_updatedAt_operator
|
||||
createdAt: PayloadPreference_createdAt_operator
|
||||
id: PayloadPreference_id_operator
|
||||
OR: [PayloadPreference_where_or]
|
||||
AND: [PayloadPreference_where_and]
|
||||
}
|
||||
|
||||
input PayloadPreference_user_Relation {
|
||||
relationTo: PayloadPreference_user_Relation_RelationTo
|
||||
value: String
|
||||
}
|
||||
|
||||
enum PayloadPreference_user_Relation_RelationTo {
|
||||
users
|
||||
}
|
||||
|
||||
input PayloadPreference_key_operator {
|
||||
equals: String
|
||||
not_equals: String
|
||||
like: String
|
||||
contains: String
|
||||
in: [String]
|
||||
not_in: [String]
|
||||
all: [String]
|
||||
exists: Boolean
|
||||
}
|
||||
|
||||
input PayloadPreference_value_operator {
|
||||
equals: JSON
|
||||
not_equals: JSON
|
||||
like: JSON
|
||||
contains: JSON
|
||||
exists: Boolean
|
||||
}
|
||||
|
||||
input PayloadPreference_updatedAt_operator {
|
||||
equals: DateTime
|
||||
not_equals: DateTime
|
||||
greater_than_equal: DateTime
|
||||
greater_than: DateTime
|
||||
less_than_equal: DateTime
|
||||
less_than: DateTime
|
||||
like: DateTime
|
||||
exists: Boolean
|
||||
}
|
||||
|
||||
input PayloadPreference_createdAt_operator {
|
||||
equals: DateTime
|
||||
not_equals: DateTime
|
||||
greater_than_equal: DateTime
|
||||
greater_than: DateTime
|
||||
less_than_equal: DateTime
|
||||
less_than: DateTime
|
||||
like: DateTime
|
||||
exists: Boolean
|
||||
}
|
||||
|
||||
input PayloadPreference_id_operator {
|
||||
equals: String
|
||||
not_equals: String
|
||||
like: String
|
||||
contains: String
|
||||
in: [String]
|
||||
not_in: [String]
|
||||
all: [String]
|
||||
exists: Boolean
|
||||
}
|
||||
|
||||
input PayloadPreference_where_or {
|
||||
user: PayloadPreference_user_Relation
|
||||
key: PayloadPreference_key_operator
|
||||
value: PayloadPreference_value_operator
|
||||
updatedAt: PayloadPreference_updatedAt_operator
|
||||
createdAt: PayloadPreference_createdAt_operator
|
||||
id: PayloadPreference_id_operator
|
||||
}
|
||||
|
||||
input PayloadPreference_where_and {
|
||||
user: PayloadPreference_user_Relation
|
||||
key: PayloadPreference_key_operator
|
||||
value: PayloadPreference_value_operator
|
||||
updatedAt: PayloadPreference_updatedAt_operator
|
||||
createdAt: PayloadPreference_createdAt_operator
|
||||
id: PayloadPreference_id_operator
|
||||
}
|
||||
|
||||
type payload_preferencesDocAccess {
|
||||
fields: PayloadPreferencesDocAccessFields
|
||||
create: PayloadPreferencesCreateDocAccess
|
||||
read: PayloadPreferencesReadDocAccess
|
||||
update: PayloadPreferencesUpdateDocAccess
|
||||
delete: PayloadPreferencesDeleteDocAccess
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields {
|
||||
user: PayloadPreferencesDocAccessFields_user
|
||||
key: PayloadPreferencesDocAccessFields_key
|
||||
value: PayloadPreferencesDocAccessFields_value
|
||||
updatedAt: PayloadPreferencesDocAccessFields_updatedAt
|
||||
createdAt: PayloadPreferencesDocAccessFields_createdAt
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_user {
|
||||
create: PayloadPreferencesDocAccessFields_user_Create
|
||||
read: PayloadPreferencesDocAccessFields_user_Read
|
||||
update: PayloadPreferencesDocAccessFields_user_Update
|
||||
delete: PayloadPreferencesDocAccessFields_user_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_user_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_user_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_user_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_user_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_key {
|
||||
create: PayloadPreferencesDocAccessFields_key_Create
|
||||
read: PayloadPreferencesDocAccessFields_key_Read
|
||||
update: PayloadPreferencesDocAccessFields_key_Update
|
||||
delete: PayloadPreferencesDocAccessFields_key_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_key_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_key_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_key_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_key_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_value {
|
||||
create: PayloadPreferencesDocAccessFields_value_Create
|
||||
read: PayloadPreferencesDocAccessFields_value_Read
|
||||
update: PayloadPreferencesDocAccessFields_value_Update
|
||||
delete: PayloadPreferencesDocAccessFields_value_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_value_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_value_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_value_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_value_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_updatedAt {
|
||||
create: PayloadPreferencesDocAccessFields_updatedAt_Create
|
||||
read: PayloadPreferencesDocAccessFields_updatedAt_Read
|
||||
update: PayloadPreferencesDocAccessFields_updatedAt_Update
|
||||
delete: PayloadPreferencesDocAccessFields_updatedAt_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_updatedAt_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_updatedAt_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_updatedAt_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_updatedAt_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_createdAt {
|
||||
create: PayloadPreferencesDocAccessFields_createdAt_Create
|
||||
read: PayloadPreferencesDocAccessFields_createdAt_Read
|
||||
update: PayloadPreferencesDocAccessFields_createdAt_Update
|
||||
delete: PayloadPreferencesDocAccessFields_createdAt_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_createdAt_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_createdAt_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_createdAt_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesDocAccessFields_createdAt_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesCreateDocAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesReadDocAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesUpdateDocAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesDeleteDocAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type Access {
|
||||
canAccessAdmin: Boolean!
|
||||
collection1: collection1Access
|
||||
collection2: collection2Access
|
||||
users: usersAccess
|
||||
payload_preferences: payload_preferencesAccess
|
||||
}
|
||||
|
||||
type collection1Access {
|
||||
@@ -1758,6 +2029,157 @@ type UsersUnlockAccess {
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type payload_preferencesAccess {
|
||||
fields: PayloadPreferencesFields
|
||||
create: PayloadPreferencesCreateAccess
|
||||
read: PayloadPreferencesReadAccess
|
||||
update: PayloadPreferencesUpdateAccess
|
||||
delete: PayloadPreferencesDeleteAccess
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields {
|
||||
user: PayloadPreferencesFields_user
|
||||
key: PayloadPreferencesFields_key
|
||||
value: PayloadPreferencesFields_value
|
||||
updatedAt: PayloadPreferencesFields_updatedAt
|
||||
createdAt: PayloadPreferencesFields_createdAt
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_user {
|
||||
create: PayloadPreferencesFields_user_Create
|
||||
read: PayloadPreferencesFields_user_Read
|
||||
update: PayloadPreferencesFields_user_Update
|
||||
delete: PayloadPreferencesFields_user_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_user_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_user_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_user_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_user_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_key {
|
||||
create: PayloadPreferencesFields_key_Create
|
||||
read: PayloadPreferencesFields_key_Read
|
||||
update: PayloadPreferencesFields_key_Update
|
||||
delete: PayloadPreferencesFields_key_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_key_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_key_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_key_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_key_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_value {
|
||||
create: PayloadPreferencesFields_value_Create
|
||||
read: PayloadPreferencesFields_value_Read
|
||||
update: PayloadPreferencesFields_value_Update
|
||||
delete: PayloadPreferencesFields_value_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_value_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_value_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_value_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_value_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_updatedAt {
|
||||
create: PayloadPreferencesFields_updatedAt_Create
|
||||
read: PayloadPreferencesFields_updatedAt_Read
|
||||
update: PayloadPreferencesFields_updatedAt_Update
|
||||
delete: PayloadPreferencesFields_updatedAt_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_updatedAt_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_updatedAt_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_updatedAt_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_updatedAt_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_createdAt {
|
||||
create: PayloadPreferencesFields_createdAt_Create
|
||||
read: PayloadPreferencesFields_createdAt_Read
|
||||
update: PayloadPreferencesFields_createdAt_Update
|
||||
delete: PayloadPreferencesFields_createdAt_Delete
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_createdAt_Create {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_createdAt_Read {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_createdAt_Update {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesFields_createdAt_Delete {
|
||||
permission: Boolean!
|
||||
}
|
||||
|
||||
type PayloadPreferencesCreateAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesReadAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesUpdateAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type PayloadPreferencesDeleteAccess {
|
||||
permission: Boolean!
|
||||
where: JSONObject
|
||||
}
|
||||
|
||||
type Mutation {
|
||||
createCollection1(data: mutationCollection1Input!, draft: Boolean): Collection1
|
||||
updateCollection1(id: String!, data: mutationCollection1UpdateInput!, draft: Boolean, autosave: Boolean): Collection1
|
||||
@@ -1775,8 +2197,9 @@ type Mutation {
|
||||
forgotPasswordUser(email: String!, disableEmail: Boolean, expiration: Int): Boolean!
|
||||
resetPasswordUser(token: String, password: String): usersResetPassword
|
||||
verifyEmailUser(token: String): Boolean
|
||||
updatePreference(key: String!, value: JSON): Preference
|
||||
deletePreference(key: String!): Preference
|
||||
createPayloadPreference(data: mutationPayloadPreferenceInput!, draft: Boolean): PayloadPreference
|
||||
updatePayloadPreference(id: String!, data: mutationPayloadPreferenceUpdateInput!, draft: Boolean, autosave: Boolean): PayloadPreference
|
||||
deletePayloadPreference(id: String!): PayloadPreference
|
||||
}
|
||||
|
||||
input mutationCollection1Input {
|
||||
@@ -1898,3 +2321,37 @@ type usersResetPassword {
|
||||
token: String
|
||||
user: User
|
||||
}
|
||||
|
||||
input mutationPayloadPreferenceInput {
|
||||
user: PayloadPreference_UserRelationshipInput
|
||||
key: String
|
||||
value: JSON
|
||||
updatedAt: String
|
||||
createdAt: String
|
||||
}
|
||||
|
||||
input PayloadPreference_UserRelationshipInput {
|
||||
relationTo: PayloadPreference_UserRelationshipInputRelationTo
|
||||
value: JSON
|
||||
}
|
||||
|
||||
enum PayloadPreference_UserRelationshipInputRelationTo {
|
||||
users
|
||||
}
|
||||
|
||||
input mutationPayloadPreferenceUpdateInput {
|
||||
user: PayloadPreferenceUpdate_UserRelationshipInput
|
||||
key: String
|
||||
value: JSON
|
||||
updatedAt: String
|
||||
createdAt: String
|
||||
}
|
||||
|
||||
input PayloadPreferenceUpdate_UserRelationshipInput {
|
||||
relationTo: PayloadPreferenceUpdate_UserRelationshipInputRelationTo
|
||||
value: JSON
|
||||
}
|
||||
|
||||
enum PayloadPreferenceUpdate_UserRelationshipInputRelationTo {
|
||||
users
|
||||
}
|
||||
Reference in New Issue
Block a user