@payloadcms/graphql 3.59.0-internal.cb85185 → 3.59.0-internal.cf8cc72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/resolvers/collections/find.d.ts +5 -4
  2. package/dist/resolvers/collections/find.d.ts.map +1 -1
  3. package/dist/resolvers/collections/find.js +10 -13
  4. package/dist/resolvers/collections/find.js.map +1 -1
  5. package/dist/resolvers/collections/findByID.d.ts +5 -4
  6. package/dist/resolvers/collections/findByID.d.ts.map +1 -1
  7. package/dist/resolvers/collections/findByID.js +13 -13
  8. package/dist/resolvers/collections/findByID.js.map +1 -1
  9. package/dist/resolvers/collections/findVersionByID.d.ts +5 -4
  10. package/dist/resolvers/collections/findVersionByID.d.ts.map +1 -1
  11. package/dist/resolvers/collections/findVersionByID.js +13 -10
  12. package/dist/resolvers/collections/findVersionByID.js.map +1 -1
  13. package/dist/resolvers/collections/findVersions.d.ts +5 -4
  14. package/dist/resolvers/collections/findVersions.d.ts.map +1 -1
  15. package/dist/resolvers/collections/findVersions.js +13 -13
  16. package/dist/resolvers/collections/findVersions.js.map +1 -1
  17. package/dist/resolvers/globals/findOne.d.ts +10 -1
  18. package/dist/resolvers/globals/findOne.d.ts.map +1 -1
  19. package/dist/resolvers/globals/findOne.js +13 -8
  20. package/dist/resolvers/globals/findOne.js.map +1 -1
  21. package/dist/resolvers/globals/findVersionByID.d.ts +5 -4
  22. package/dist/resolvers/globals/findVersionByID.d.ts.map +1 -1
  23. package/dist/resolvers/globals/findVersionByID.js +13 -8
  24. package/dist/resolvers/globals/findVersionByID.js.map +1 -1
  25. package/dist/resolvers/globals/findVersions.d.ts +5 -4
  26. package/dist/resolvers/globals/findVersions.d.ts.map +1 -1
  27. package/dist/resolvers/globals/findVersions.js +13 -2
  28. package/dist/resolvers/globals/findVersions.js.map +1 -1
  29. package/dist/resolvers/types.d.ts +2 -1
  30. package/dist/resolvers/types.d.ts.map +1 -1
  31. package/dist/resolvers/types.js.map +1 -1
  32. package/dist/schema/fieldToSchemaMap.d.ts.map +1 -1
  33. package/dist/schema/fieldToSchemaMap.js +28 -6
  34. package/dist/schema/fieldToSchemaMap.js.map +1 -1
  35. package/dist/schema/initCollections.d.ts.map +1 -1
  36. package/dist/schema/initCollections.js +9 -0
  37. package/dist/schema/initCollections.js.map +1 -1
  38. package/dist/schema/initGlobals.d.ts.map +1 -1
  39. package/dist/schema/initGlobals.js +11 -2
  40. package/dist/schema/initGlobals.js.map +1 -1
  41. package/dist/utilities/select.d.ts +8 -0
  42. package/dist/utilities/select.d.ts.map +1 -0
  43. package/dist/utilities/select.js +91 -0
  44. package/dist/utilities/select.js.map +1 -0
  45. package/package.json +3 -3
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/schema/initCollections.ts"],"sourcesContent":["import type {\n Collection,\n Field,\n GraphQLInfo,\n SanitizedCollectionConfig,\n SanitizedConfig,\n} from 'payload'\n\nimport {\n GraphQLBoolean,\n GraphQLInt,\n GraphQLNonNull,\n GraphQLObjectType,\n GraphQLString,\n} from 'graphql'\nimport { buildVersionCollectionFields, flattenTopLevelFields, formatNames, toWords } from 'payload'\nimport { fieldAffectsData, getLoginOptions } from 'payload/shared'\n\nimport type { ObjectTypeConfig } from './buildObjectType.js'\n\nimport { forgotPassword } from '../resolvers/auth/forgotPassword.js'\nimport { init } from '../resolvers/auth/init.js'\nimport { login } from '../resolvers/auth/login.js'\nimport { logout } from '../resolvers/auth/logout.js'\nimport { me } from '../resolvers/auth/me.js'\nimport { refresh } from '../resolvers/auth/refresh.js'\nimport { resetPassword } from '../resolvers/auth/resetPassword.js'\nimport { unlock } from '../resolvers/auth/unlock.js'\nimport { verifyEmail } from '../resolvers/auth/verifyEmail.js'\nimport { countResolver } from '../resolvers/collections/count.js'\nimport { createResolver } from '../resolvers/collections/create.js'\nimport { getDeleteResolver } from '../resolvers/collections/delete.js'\nimport { docAccessResolver } from '../resolvers/collections/docAccess.js'\nimport { duplicateResolver } from '../resolvers/collections/duplicate.js'\nimport { findResolver } from '../resolvers/collections/find.js'\nimport { findByIDResolver } from '../resolvers/collections/findByID.js'\nimport { findVersionByIDResolver } from '../resolvers/collections/findVersionByID.js'\nimport { findVersionsResolver } from '../resolvers/collections/findVersions.js'\nimport { restoreVersionResolver } from '../resolvers/collections/restoreVersion.js'\nimport { updateResolver } from '../resolvers/collections/update.js'\nimport { formatName } from '../utilities/formatName.js'\nimport { buildMutationInputType, getCollectionIDType } from './buildMutationInputType.js'\nimport { buildObjectType } from './buildObjectType.js'\nimport { buildPaginatedListType } from './buildPaginatedListType.js'\nimport { buildPolicyType } from './buildPoliciesType.js'\nimport { buildWhereInputType } from './buildWhereInputType.js'\n\ntype InitCollectionsGraphQLArgs = {\n config: SanitizedConfig\n graphqlResult: GraphQLInfo\n}\nexport function initCollections({ config, graphqlResult }: InitCollectionsGraphQLArgs): void {\n Object.keys(graphqlResult.collections).forEach((slug) => {\n const collection: Collection = graphqlResult.collections[slug]\n const {\n config: collectionConfig,\n config: { fields, graphQL = {} as SanitizedCollectionConfig['graphQL'], versions },\n } = collection\n\n if (!graphQL) {\n return\n }\n\n let singularName\n let pluralName\n\n const fromSlug = formatNames(collection.config.slug)\n\n if (graphQL.singularName) {\n singularName = toWords(graphQL.singularName, true)\n } else {\n singularName = fromSlug.singular\n }\n if (graphQL.pluralName) {\n pluralName = toWords(graphQL.pluralName, true)\n } else {\n pluralName = fromSlug.plural\n }\n\n // For collections named 'Media' or similar,\n // there is a possibility that the singular name\n // will equal the plural name. Append `all` to the beginning\n // of potential conflicts\n if (singularName === pluralName) {\n pluralName = `all${singularName}`\n }\n\n collection.graphQL = {} as Collection['graphQL']\n\n const hasIDField =\n flattenTopLevelFields(fields).findIndex(\n (field) => fieldAffectsData(field) && field.name === 'id',\n ) > -1\n\n const idType = getCollectionIDType(config.db.defaultIDType, collectionConfig)\n\n const baseFields: ObjectTypeConfig = {}\n\n const whereInputFields = [...fields]\n\n if (!hasIDField) {\n baseFields.id = { type: new GraphQLNonNull(idType) }\n whereInputFields.push({\n name: 'id',\n type: config.db.defaultIDType as 'text',\n })\n }\n\n const forceNullableObjectType = Boolean(versions?.drafts)\n\n collection.graphQL.type = buildObjectType({\n name: singularName,\n baseFields,\n collectionSlug: collectionConfig.slug,\n config,\n fields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: singularName,\n })\n\n collection.graphQL.paginatedType = buildPaginatedListType(pluralName, collection.graphQL.type)\n\n collection.graphQL.whereInputType = buildWhereInputType({\n name: singularName,\n fields: whereInputFields,\n parentName: singularName,\n })\n\n const mutationInputFields = [...fields]\n\n if (\n collectionConfig.auth &&\n (!collectionConfig.auth.disableLocalStrategy ||\n (typeof collectionConfig.auth.disableLocalStrategy === 'object' &&\n collectionConfig.auth.disableLocalStrategy.optionalPassword))\n ) {\n mutationInputFields.push({\n name: 'password',\n type: 'text',\n label: 'Password',\n required: !(\n typeof collectionConfig.auth.disableLocalStrategy === 'object' &&\n collectionConfig.auth.disableLocalStrategy.optionalPassword\n ),\n })\n }\n\n let mutationCreateInputFields = mutationInputFields\n\n if (\n config.db.allowIDOnCreate &&\n !collectionConfig.flattenedFields.some((field) => field.name === 'id')\n ) {\n mutationCreateInputFields = [\n ...mutationCreateInputFields,\n {\n name: 'id',\n type: config.db.defaultIDType,\n } as Field,\n ]\n }\n\n const createMutationInputType = buildMutationInputType({\n name: singularName,\n config,\n fields: mutationCreateInputFields,\n graphqlResult,\n parentIsLocalized: false,\n parentName: singularName,\n })\n if (createMutationInputType) {\n collection.graphQL.mutationInputType = new GraphQLNonNull(createMutationInputType)\n }\n\n const updateMutationInputType = buildMutationInputType({\n name: `${singularName}Update`,\n config,\n fields: mutationInputFields.filter(\n (field) => !(fieldAffectsData(field) && field.name === 'id'),\n ),\n forceNullable: true,\n graphqlResult,\n parentIsLocalized: false,\n parentName: `${singularName}Update`,\n })\n if (updateMutationInputType) {\n collection.graphQL.updateMutationInputType = new GraphQLNonNull(updateMutationInputType)\n }\n\n const queriesEnabled =\n typeof collectionConfig.graphQL !== 'object' || !collectionConfig.graphQL.disableQueries\n const mutationsEnabled =\n typeof collectionConfig.graphQL !== 'object' || !collectionConfig.graphQL.disableMutations\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[singularName] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n trash: { type: GraphQLBoolean },\n },\n resolve: findByIDResolver(collection),\n }\n\n graphqlResult.Query.fields[pluralName] = {\n type: buildPaginatedListType(pluralName, collection.graphQL.type),\n args: {\n draft: { type: GraphQLBoolean },\n where: { type: collection.graphQL.whereInputType },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n trash: { type: GraphQLBoolean },\n },\n resolve: findResolver(collection),\n }\n\n graphqlResult.Query.fields[`count${pluralName}`] = {\n type: new GraphQLObjectType({\n name: `count${pluralName}`,\n fields: {\n totalDocs: { type: GraphQLInt },\n },\n }),\n args: {\n draft: { type: GraphQLBoolean },\n trash: { type: GraphQLBoolean },\n where: { type: collection.graphQL.whereInputType },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: countResolver(collection),\n }\n\n graphqlResult.Query.fields[`docAccess${singularName}`] = {\n type: buildPolicyType({\n type: 'collection',\n entity: collectionConfig,\n scope: 'docAccess',\n typeSuffix: 'DocAccess',\n }),\n args: {\n id: { type: new GraphQLNonNull(idType) },\n },\n resolve: docAccessResolver(collection),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`create${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n ...(createMutationInputType\n ? { data: { type: collection.graphQL.mutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: createResolver(collection),\n }\n\n graphqlResult.Mutation.fields[`update${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n autosave: { type: GraphQLBoolean },\n ...(updateMutationInputType\n ? { data: { type: collection.graphQL.updateMutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n trash: { type: GraphQLBoolean },\n },\n resolve: updateResolver(collection),\n }\n\n graphqlResult.Mutation.fields[`delete${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n trash: { type: GraphQLBoolean },\n },\n resolve: getDeleteResolver(collection),\n }\n\n if (collectionConfig.disableDuplicate !== true) {\n graphqlResult.Mutation.fields[`duplicate${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n ...(createMutationInputType\n ? { data: { type: collection.graphQL.mutationInputType } }\n : {}),\n },\n resolve: duplicateResolver(collection),\n }\n }\n }\n\n if (collectionConfig.versions) {\n const versionIDType = config.db.defaultIDType === 'text' ? GraphQLString : GraphQLInt\n const versionCollectionFields: Field[] = [\n ...buildVersionCollectionFields(config, collectionConfig),\n {\n name: 'id',\n type: config.db.defaultIDType as 'text',\n },\n {\n name: 'createdAt',\n type: 'date',\n label: ({ t }) => t('general:createdAt'),\n },\n {\n name: 'updatedAt',\n type: 'date',\n label: ({ t }) => t('general:updatedAt'),\n },\n ]\n\n collection.graphQL.versionType = buildObjectType({\n name: `${singularName}Version`,\n collectionSlug: collectionConfig.slug,\n config,\n fields: versionCollectionFields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: `${singularName}Version`,\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`version${formatName(singularName)}`] = {\n type: collection.graphQL.versionType,\n args: {\n id: { type: versionIDType },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n trash: { type: GraphQLBoolean },\n },\n resolve: findVersionByIDResolver(collection),\n }\n graphqlResult.Query.fields[`versions${pluralName}`] = {\n type: buildPaginatedListType(\n `versions${formatName(pluralName)}`,\n collection.graphQL.versionType,\n ),\n args: {\n where: {\n type: buildWhereInputType({\n name: `versions${singularName}`,\n fields: versionCollectionFields,\n parentName: `versions${singularName}`,\n }),\n },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n trash: { type: GraphQLBoolean },\n },\n resolve: findVersionsResolver(collection),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`restoreVersion${formatName(singularName)}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: versionIDType },\n draft: { type: GraphQLBoolean },\n },\n resolve: restoreVersionResolver(collection),\n }\n }\n }\n\n if (collectionConfig.auth) {\n const authFields: Field[] =\n collectionConfig.auth.disableLocalStrategy ||\n (collectionConfig.auth.loginWithUsername &&\n !collectionConfig.auth.loginWithUsername.allowEmailLogin &&\n !collectionConfig.auth.loginWithUsername.requireEmail)\n ? []\n : [\n {\n name: 'email',\n type: 'email',\n required: true,\n },\n ]\n collection.graphQL.JWT = buildObjectType({\n name: formatName(`${slug}JWT`),\n config,\n fields: [\n ...collectionConfig.fields.filter((field) => fieldAffectsData(field) && field.saveToJWT),\n ...authFields,\n {\n name: 'collection',\n type: 'text',\n required: true,\n },\n ],\n graphqlResult,\n parentName: formatName(`${slug}JWT`),\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`me${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}Me`),\n fields: {\n collection: {\n type: GraphQLString,\n },\n exp: {\n type: GraphQLInt,\n },\n strategy: {\n type: GraphQLString,\n },\n token: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.type,\n },\n },\n }),\n resolve: me(collection),\n }\n\n graphqlResult.Query.fields[`initialized${singularName}`] = {\n type: GraphQLBoolean,\n resolve: init(collection.config.slug),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`refreshToken${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}Refreshed${singularName}`),\n fields: {\n exp: {\n type: GraphQLInt,\n },\n refreshedToken: {\n type: GraphQLString,\n },\n strategy: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.JWT,\n },\n },\n }),\n resolve: refresh(collection),\n }\n\n graphqlResult.Mutation.fields[`logout${singularName}`] = {\n type: GraphQLString,\n args: {\n allSessions: { type: GraphQLBoolean },\n },\n resolve: logout(collection),\n }\n\n if (!collectionConfig.auth.disableLocalStrategy) {\n const authArgs = {}\n\n const { canLoginWithEmail, canLoginWithUsername } = getLoginOptions(\n collectionConfig.auth.loginWithUsername,\n )\n\n if (canLoginWithEmail) {\n authArgs['email'] = { type: new GraphQLNonNull(GraphQLString) }\n }\n if (canLoginWithUsername) {\n authArgs['username'] = { type: new GraphQLNonNull(GraphQLString) }\n }\n\n if (collectionConfig.auth.maxLoginAttempts > 0) {\n graphqlResult.Mutation.fields[`unlock${singularName}`] = {\n type: new GraphQLNonNull(GraphQLBoolean),\n args: authArgs,\n resolve: unlock(collection),\n }\n }\n\n graphqlResult.Mutation.fields[`login${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}LoginResult`),\n fields: {\n exp: {\n type: GraphQLInt,\n },\n token: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.type,\n },\n },\n }),\n args: {\n ...authArgs,\n password: { type: GraphQLString },\n },\n resolve: login(collection),\n }\n\n graphqlResult.Mutation.fields[`forgotPassword${singularName}`] = {\n type: new GraphQLNonNull(GraphQLBoolean),\n args: {\n disableEmail: { type: GraphQLBoolean },\n expiration: { type: GraphQLInt },\n ...authArgs,\n },\n resolve: forgotPassword(collection),\n }\n\n graphqlResult.Mutation.fields[`resetPassword${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}ResetPassword`),\n fields: {\n token: { type: GraphQLString },\n user: { type: collection.graphQL.type },\n },\n }),\n args: {\n password: { type: GraphQLString },\n token: { type: GraphQLString },\n },\n resolve: resetPassword(collection),\n }\n\n graphqlResult.Mutation.fields[`verifyEmail${singularName}`] = {\n type: GraphQLBoolean,\n args: {\n token: { type: GraphQLString },\n },\n resolve: verifyEmail(collection),\n }\n }\n }\n }\n })\n}\n"],"names":["GraphQLBoolean","GraphQLInt","GraphQLNonNull","GraphQLObjectType","GraphQLString","buildVersionCollectionFields","flattenTopLevelFields","formatNames","toWords","fieldAffectsData","getLoginOptions","forgotPassword","init","login","logout","me","refresh","resetPassword","unlock","verifyEmail","countResolver","createResolver","getDeleteResolver","docAccessResolver","duplicateResolver","findResolver","findByIDResolver","findVersionByIDResolver","findVersionsResolver","restoreVersionResolver","updateResolver","formatName","buildMutationInputType","getCollectionIDType","buildObjectType","buildPaginatedListType","buildPolicyType","buildWhereInputType","initCollections","config","graphqlResult","Object","keys","collections","forEach","slug","collection","collectionConfig","fields","graphQL","versions","singularName","pluralName","fromSlug","singular","plural","hasIDField","findIndex","field","name","idType","db","defaultIDType","baseFields","whereInputFields","id","type","push","forceNullableObjectType","Boolean","drafts","collectionSlug","forceNullable","parentName","paginatedType","whereInputType","mutationInputFields","auth","disableLocalStrategy","optionalPassword","label","required","mutationCreateInputFields","allowIDOnCreate","flattenedFields","some","createMutationInputType","parentIsLocalized","mutationInputType","updateMutationInputType","filter","queriesEnabled","disableQueries","mutationsEnabled","disableMutations","Query","args","draft","localization","fallbackLocale","types","fallbackLocaleInputType","locale","localeInputType","trash","resolve","where","limit","page","pagination","sort","totalDocs","entity","scope","typeSuffix","Mutation","data","autosave","disableDuplicate","versionIDType","versionCollectionFields","t","versionType","authFields","loginWithUsername","allowEmailLogin","requireEmail","JWT","saveToJWT","exp","strategy","token","user","refreshedToken","allSessions","authArgs","canLoginWithEmail","canLoginWithUsername","maxLoginAttempts","password","disableEmail","expiration"],"mappings":"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"}
1
+ {"version":3,"sources":["../../src/schema/initCollections.ts"],"sourcesContent":["import type {\n Collection,\n Field,\n GraphQLInfo,\n SanitizedCollectionConfig,\n SanitizedConfig,\n} from 'payload'\n\nimport {\n GraphQLBoolean,\n GraphQLInt,\n GraphQLNonNull,\n GraphQLObjectType,\n GraphQLString,\n} from 'graphql'\nimport { buildVersionCollectionFields, flattenTopLevelFields, formatNames, toWords } from 'payload'\nimport { fieldAffectsData, getLoginOptions } from 'payload/shared'\n\nimport type { ObjectTypeConfig } from './buildObjectType.js'\n\nimport { forgotPassword } from '../resolvers/auth/forgotPassword.js'\nimport { init } from '../resolvers/auth/init.js'\nimport { login } from '../resolvers/auth/login.js'\nimport { logout } from '../resolvers/auth/logout.js'\nimport { me } from '../resolvers/auth/me.js'\nimport { refresh } from '../resolvers/auth/refresh.js'\nimport { resetPassword } from '../resolvers/auth/resetPassword.js'\nimport { unlock } from '../resolvers/auth/unlock.js'\nimport { verifyEmail } from '../resolvers/auth/verifyEmail.js'\nimport { countResolver } from '../resolvers/collections/count.js'\nimport { createResolver } from '../resolvers/collections/create.js'\nimport { getDeleteResolver } from '../resolvers/collections/delete.js'\nimport { docAccessResolver } from '../resolvers/collections/docAccess.js'\nimport { duplicateResolver } from '../resolvers/collections/duplicate.js'\nimport { findResolver } from '../resolvers/collections/find.js'\nimport { findByIDResolver } from '../resolvers/collections/findByID.js'\nimport { findVersionByIDResolver } from '../resolvers/collections/findVersionByID.js'\nimport { findVersionsResolver } from '../resolvers/collections/findVersions.js'\nimport { restoreVersionResolver } from '../resolvers/collections/restoreVersion.js'\nimport { updateResolver } from '../resolvers/collections/update.js'\nimport { formatName } from '../utilities/formatName.js'\nimport { buildMutationInputType, getCollectionIDType } from './buildMutationInputType.js'\nimport { buildObjectType } from './buildObjectType.js'\nimport { buildPaginatedListType } from './buildPaginatedListType.js'\nimport { buildPolicyType } from './buildPoliciesType.js'\nimport { buildWhereInputType } from './buildWhereInputType.js'\n\ntype InitCollectionsGraphQLArgs = {\n config: SanitizedConfig\n graphqlResult: GraphQLInfo\n}\nexport function initCollections({ config, graphqlResult }: InitCollectionsGraphQLArgs): void {\n Object.keys(graphqlResult.collections).forEach((slug) => {\n const collection: Collection = graphqlResult.collections[slug]\n const {\n config: collectionConfig,\n config: { fields, graphQL = {} as SanitizedCollectionConfig['graphQL'], versions },\n } = collection\n\n if (!graphQL) {\n return\n }\n\n let singularName\n let pluralName\n\n const fromSlug = formatNames(collection.config.slug)\n\n if (graphQL.singularName) {\n singularName = toWords(graphQL.singularName, true)\n } else {\n singularName = fromSlug.singular\n }\n if (graphQL.pluralName) {\n pluralName = toWords(graphQL.pluralName, true)\n } else {\n pluralName = fromSlug.plural\n }\n\n // For collections named 'Media' or similar,\n // there is a possibility that the singular name\n // will equal the plural name. Append `all` to the beginning\n // of potential conflicts\n if (singularName === pluralName) {\n pluralName = `all${singularName}`\n }\n\n collection.graphQL = {} as Collection['graphQL']\n\n const hasIDField =\n flattenTopLevelFields(fields).findIndex(\n (field) => fieldAffectsData(field) && field.name === 'id',\n ) > -1\n\n const idType = getCollectionIDType(config.db.defaultIDType, collectionConfig)\n\n const baseFields: ObjectTypeConfig = {}\n\n const whereInputFields = [...fields]\n\n if (!hasIDField) {\n baseFields.id = { type: new GraphQLNonNull(idType) }\n whereInputFields.push({\n name: 'id',\n type: config.db.defaultIDType as 'text',\n })\n }\n\n const forceNullableObjectType = Boolean(versions?.drafts)\n\n collection.graphQL.type = buildObjectType({\n name: singularName,\n baseFields,\n collectionSlug: collectionConfig.slug,\n config,\n fields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: singularName,\n })\n\n collection.graphQL.paginatedType = buildPaginatedListType(pluralName, collection.graphQL.type)\n\n collection.graphQL.whereInputType = buildWhereInputType({\n name: singularName,\n fields: whereInputFields,\n parentName: singularName,\n })\n\n const mutationInputFields = [...fields]\n\n if (\n collectionConfig.auth &&\n (!collectionConfig.auth.disableLocalStrategy ||\n (typeof collectionConfig.auth.disableLocalStrategy === 'object' &&\n collectionConfig.auth.disableLocalStrategy.optionalPassword))\n ) {\n mutationInputFields.push({\n name: 'password',\n type: 'text',\n label: 'Password',\n required: !(\n typeof collectionConfig.auth.disableLocalStrategy === 'object' &&\n collectionConfig.auth.disableLocalStrategy.optionalPassword\n ),\n })\n }\n\n let mutationCreateInputFields = mutationInputFields\n\n if (\n config.db.allowIDOnCreate &&\n !collectionConfig.flattenedFields.some((field) => field.name === 'id')\n ) {\n mutationCreateInputFields = [\n ...mutationCreateInputFields,\n {\n name: 'id',\n type: config.db.defaultIDType,\n } as Field,\n ]\n }\n\n const createMutationInputType = buildMutationInputType({\n name: singularName,\n config,\n fields: mutationCreateInputFields,\n graphqlResult,\n parentIsLocalized: false,\n parentName: singularName,\n })\n if (createMutationInputType) {\n collection.graphQL.mutationInputType = new GraphQLNonNull(createMutationInputType)\n }\n\n const updateMutationInputType = buildMutationInputType({\n name: `${singularName}Update`,\n config,\n fields: mutationInputFields.filter(\n (field) => !(fieldAffectsData(field) && field.name === 'id'),\n ),\n forceNullable: true,\n graphqlResult,\n parentIsLocalized: false,\n parentName: `${singularName}Update`,\n })\n if (updateMutationInputType) {\n collection.graphQL.updateMutationInputType = new GraphQLNonNull(updateMutationInputType)\n }\n\n const queriesEnabled =\n typeof collectionConfig.graphQL !== 'object' || !collectionConfig.graphQL.disableQueries\n const mutationsEnabled =\n typeof collectionConfig.graphQL !== 'object' || !collectionConfig.graphQL.disableMutations\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[singularName] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n select: { type: GraphQLBoolean },\n trash: { type: GraphQLBoolean },\n },\n resolve: findByIDResolver(collection),\n }\n\n graphqlResult.Query.fields[pluralName] = {\n type: buildPaginatedListType(pluralName, collection.graphQL.type),\n args: {\n draft: { type: GraphQLBoolean },\n where: { type: collection.graphQL.whereInputType },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n select: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n trash: { type: GraphQLBoolean },\n },\n resolve: findResolver(collection),\n }\n\n graphqlResult.Query.fields[`count${pluralName}`] = {\n type: new GraphQLObjectType({\n name: `count${pluralName}`,\n fields: {\n totalDocs: { type: GraphQLInt },\n },\n }),\n args: {\n draft: { type: GraphQLBoolean },\n trash: { type: GraphQLBoolean },\n where: { type: collection.graphQL.whereInputType },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: countResolver(collection),\n }\n\n graphqlResult.Query.fields[`docAccess${singularName}`] = {\n type: buildPolicyType({\n type: 'collection',\n entity: collectionConfig,\n scope: 'docAccess',\n typeSuffix: 'DocAccess',\n }),\n args: {\n id: { type: new GraphQLNonNull(idType) },\n },\n resolve: docAccessResolver(collection),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`create${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n ...(createMutationInputType\n ? { data: { type: collection.graphQL.mutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: createResolver(collection),\n }\n\n graphqlResult.Mutation.fields[`update${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n autosave: { type: GraphQLBoolean },\n ...(updateMutationInputType\n ? { data: { type: collection.graphQL.updateMutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n trash: { type: GraphQLBoolean },\n },\n resolve: updateResolver(collection),\n }\n\n graphqlResult.Mutation.fields[`delete${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n trash: { type: GraphQLBoolean },\n },\n resolve: getDeleteResolver(collection),\n }\n\n if (collectionConfig.disableDuplicate !== true) {\n graphqlResult.Mutation.fields[`duplicate${singularName}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: new GraphQLNonNull(idType) },\n ...(createMutationInputType\n ? { data: { type: collection.graphQL.mutationInputType } }\n : {}),\n },\n resolve: duplicateResolver(collection),\n }\n }\n }\n\n if (collectionConfig.versions) {\n const versionIDType = config.db.defaultIDType === 'text' ? GraphQLString : GraphQLInt\n const versionCollectionFields: Field[] = [\n ...buildVersionCollectionFields(config, collectionConfig),\n {\n name: 'id',\n type: config.db.defaultIDType as 'text',\n },\n {\n name: 'createdAt',\n type: 'date',\n label: ({ t }) => t('general:createdAt'),\n },\n {\n name: 'updatedAt',\n type: 'date',\n label: ({ t }) => t('general:updatedAt'),\n },\n ]\n\n collection.graphQL.versionType = buildObjectType({\n name: `${singularName}Version`,\n collectionSlug: collectionConfig.slug,\n config,\n fields: versionCollectionFields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: `${singularName}Version`,\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`version${formatName(singularName)}`] = {\n type: collection.graphQL.versionType,\n args: {\n id: { type: versionIDType },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n trash: { type: GraphQLBoolean },\n },\n resolve: findVersionByIDResolver(collection),\n }\n graphqlResult.Query.fields[`versions${pluralName}`] = {\n type: buildPaginatedListType(\n `versions${formatName(pluralName)}`,\n collection.graphQL.versionType,\n ),\n args: {\n where: {\n type: buildWhereInputType({\n name: `versions${singularName}`,\n fields: versionCollectionFields,\n parentName: `versions${singularName}`,\n }),\n },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n select: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n trash: { type: GraphQLBoolean },\n },\n resolve: findVersionsResolver(collection),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`restoreVersion${formatName(singularName)}`] = {\n type: collection.graphQL.type,\n args: {\n id: { type: versionIDType },\n draft: { type: GraphQLBoolean },\n },\n resolve: restoreVersionResolver(collection),\n }\n }\n }\n\n if (collectionConfig.auth) {\n const authFields: Field[] =\n collectionConfig.auth.disableLocalStrategy ||\n (collectionConfig.auth.loginWithUsername &&\n !collectionConfig.auth.loginWithUsername.allowEmailLogin &&\n !collectionConfig.auth.loginWithUsername.requireEmail)\n ? []\n : [\n {\n name: 'email',\n type: 'email',\n required: true,\n },\n ]\n collection.graphQL.JWT = buildObjectType({\n name: formatName(`${slug}JWT`),\n config,\n fields: [\n ...collectionConfig.fields.filter((field) => fieldAffectsData(field) && field.saveToJWT),\n ...authFields,\n {\n name: 'collection',\n type: 'text',\n required: true,\n },\n ],\n graphqlResult,\n parentName: formatName(`${slug}JWT`),\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`me${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}Me`),\n fields: {\n collection: {\n type: GraphQLString,\n },\n exp: {\n type: GraphQLInt,\n },\n strategy: {\n type: GraphQLString,\n },\n token: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.type,\n },\n },\n }),\n resolve: me(collection),\n }\n\n graphqlResult.Query.fields[`initialized${singularName}`] = {\n type: GraphQLBoolean,\n resolve: init(collection.config.slug),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`refreshToken${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}Refreshed${singularName}`),\n fields: {\n exp: {\n type: GraphQLInt,\n },\n refreshedToken: {\n type: GraphQLString,\n },\n strategy: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.JWT,\n },\n },\n }),\n resolve: refresh(collection),\n }\n\n graphqlResult.Mutation.fields[`logout${singularName}`] = {\n type: GraphQLString,\n args: {\n allSessions: { type: GraphQLBoolean },\n },\n resolve: logout(collection),\n }\n\n if (!collectionConfig.auth.disableLocalStrategy) {\n const authArgs = {}\n\n const { canLoginWithEmail, canLoginWithUsername } = getLoginOptions(\n collectionConfig.auth.loginWithUsername,\n )\n\n if (canLoginWithEmail) {\n authArgs['email'] = { type: new GraphQLNonNull(GraphQLString) }\n }\n if (canLoginWithUsername) {\n authArgs['username'] = { type: new GraphQLNonNull(GraphQLString) }\n }\n\n if (collectionConfig.auth.maxLoginAttempts > 0) {\n graphqlResult.Mutation.fields[`unlock${singularName}`] = {\n type: new GraphQLNonNull(GraphQLBoolean),\n args: authArgs,\n resolve: unlock(collection),\n }\n }\n\n graphqlResult.Mutation.fields[`login${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}LoginResult`),\n fields: {\n exp: {\n type: GraphQLInt,\n },\n token: {\n type: GraphQLString,\n },\n user: {\n type: collection.graphQL.type,\n },\n },\n }),\n args: {\n ...authArgs,\n password: { type: GraphQLString },\n },\n resolve: login(collection),\n }\n\n graphqlResult.Mutation.fields[`forgotPassword${singularName}`] = {\n type: new GraphQLNonNull(GraphQLBoolean),\n args: {\n disableEmail: { type: GraphQLBoolean },\n expiration: { type: GraphQLInt },\n ...authArgs,\n },\n resolve: forgotPassword(collection),\n }\n\n graphqlResult.Mutation.fields[`resetPassword${singularName}`] = {\n type: new GraphQLObjectType({\n name: formatName(`${slug}ResetPassword`),\n fields: {\n token: { type: GraphQLString },\n user: { type: collection.graphQL.type },\n },\n }),\n args: {\n password: { type: GraphQLString },\n token: { type: GraphQLString },\n },\n resolve: resetPassword(collection),\n }\n\n graphqlResult.Mutation.fields[`verifyEmail${singularName}`] = {\n type: GraphQLBoolean,\n args: {\n token: { type: GraphQLString },\n },\n resolve: verifyEmail(collection),\n }\n }\n }\n }\n })\n}\n"],"names":["GraphQLBoolean","GraphQLInt","GraphQLNonNull","GraphQLObjectType","GraphQLString","buildVersionCollectionFields","flattenTopLevelFields","formatNames","toWords","fieldAffectsData","getLoginOptions","forgotPassword","init","login","logout","me","refresh","resetPassword","unlock","verifyEmail","countResolver","createResolver","getDeleteResolver","docAccessResolver","duplicateResolver","findResolver","findByIDResolver","findVersionByIDResolver","findVersionsResolver","restoreVersionResolver","updateResolver","formatName","buildMutationInputType","getCollectionIDType","buildObjectType","buildPaginatedListType","buildPolicyType","buildWhereInputType","initCollections","config","graphqlResult","Object","keys","collections","forEach","slug","collection","collectionConfig","fields","graphQL","versions","singularName","pluralName","fromSlug","singular","plural","hasIDField","findIndex","field","name","idType","db","defaultIDType","baseFields","whereInputFields","id","type","push","forceNullableObjectType","Boolean","drafts","collectionSlug","forceNullable","parentName","paginatedType","whereInputType","mutationInputFields","auth","disableLocalStrategy","optionalPassword","label","required","mutationCreateInputFields","allowIDOnCreate","flattenedFields","some","createMutationInputType","parentIsLocalized","mutationInputType","updateMutationInputType","filter","queriesEnabled","disableQueries","mutationsEnabled","disableMutations","Query","args","draft","localization","fallbackLocale","types","fallbackLocaleInputType","locale","localeInputType","select","trash","resolve","where","limit","page","pagination","sort","totalDocs","entity","scope","typeSuffix","Mutation","data","autosave","disableDuplicate","versionIDType","versionCollectionFields","t","versionType","authFields","loginWithUsername","allowEmailLogin","requireEmail","JWT","saveToJWT","exp","strategy","token","user","refreshedToken","allSessions","authArgs","canLoginWithEmail","canLoginWithUsername","maxLoginAttempts","password","disableEmail","expiration"],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"initGlobals.d.ts","sourceRoot":"","sources":["../../src/schema/initGlobals.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAS,WAAW,EAAE,eAAe,EAAyB,MAAM,SAAS,CAAA;AAiBzF,KAAK,sBAAsB,GAAG;IAC5B,MAAM,EAAE,eAAe,CAAA;IACvB,aAAa,EAAE,WAAW,CAAA;CAC3B,CAAA;AACD,wBAAgB,WAAW,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE,EAAE,sBAAsB,GAAG,IAAI,CA2KnF"}
1
+ {"version":3,"file":"initGlobals.d.ts","sourceRoot":"","sources":["../../src/schema/initGlobals.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAS,WAAW,EAAE,eAAe,EAAyB,MAAM,SAAS,CAAA;AAiBzF,KAAK,sBAAsB,GAAG;IAC5B,MAAM,EAAE,eAAe,CAAA;IACvB,aAAa,EAAE,WAAW,CAAA;CAC3B,CAAA;AACD,wBAAgB,WAAW,CAAC,EAAE,MAAM,EAAE,aAAa,EAAE,EAAE,sBAAsB,GAAG,IAAI,CA8KnF"}
@@ -61,7 +61,10 @@ export function initGlobals({ config, graphqlResult }) {
61
61
  locale: {
62
62
  type: graphqlResult.types.localeInputType
63
63
  }
64
- } : {}
64
+ } : {},
65
+ select: {
66
+ type: GraphQLBoolean
67
+ }
65
68
  },
66
69
  resolve: findOne(global)
67
70
  };
@@ -140,7 +143,10 @@ export function initGlobals({ config, graphqlResult }) {
140
143
  locale: {
141
144
  type: graphqlResult.types.localeInputType
142
145
  }
143
- } : {}
146
+ } : {},
147
+ select: {
148
+ type: GraphQLBoolean
149
+ }
144
150
  },
145
151
  resolve: findVersionByID(global)
146
152
  };
@@ -171,6 +177,9 @@ export function initGlobals({ config, graphqlResult }) {
171
177
  pagination: {
172
178
  type: GraphQLBoolean
173
179
  },
180
+ select: {
181
+ type: GraphQLBoolean
182
+ },
174
183
  sort: {
175
184
  type: GraphQLString
176
185
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/schema/initGlobals.ts"],"sourcesContent":["import { GraphQLBoolean, GraphQLInt, GraphQLNonNull, GraphQLString } from 'graphql'\nimport pluralize from 'pluralize'\nconst { singular } = pluralize\n\nimport type { Field, GraphQLInfo, SanitizedConfig, SanitizedGlobalConfig } from 'payload'\n\nimport { buildVersionGlobalFields, toWords } from 'payload'\n\nimport { docAccessResolver } from '../resolvers/globals/docAccess.js'\nimport { findOne } from '../resolvers/globals/findOne.js'\nimport { findVersionByID } from '../resolvers/globals/findVersionByID.js'\nimport { findVersions } from '../resolvers/globals/findVersions.js'\nimport { restoreVersion } from '../resolvers/globals/restoreVersion.js'\nimport { update } from '../resolvers/globals/update.js'\nimport { formatName } from '../utilities/formatName.js'\nimport { buildMutationInputType } from './buildMutationInputType.js'\nimport { buildObjectType } from './buildObjectType.js'\nimport { buildPaginatedListType } from './buildPaginatedListType.js'\nimport { buildPolicyType } from './buildPoliciesType.js'\nimport { buildWhereInputType } from './buildWhereInputType.js'\n\ntype InitGlobalsGraphQLArgs = {\n config: SanitizedConfig\n graphqlResult: GraphQLInfo\n}\nexport function initGlobals({ config, graphqlResult }: InitGlobalsGraphQLArgs): void {\n Object.keys(graphqlResult.globals.config).forEach((slug) => {\n const global: SanitizedGlobalConfig = graphqlResult.globals.config[slug]\n const { fields, graphQL, versions } = global\n\n if (graphQL === false) {\n return\n }\n\n const formattedName = graphQL?.name ? graphQL.name : singular(toWords(global.slug, true))\n\n const forceNullableObjectType = Boolean(versions?.drafts)\n\n if (!graphqlResult.globals.graphQL) {\n graphqlResult.globals.graphQL = {}\n }\n\n const updateMutationInputType = buildMutationInputType({\n name: formattedName,\n config,\n fields,\n graphqlResult,\n parentIsLocalized: false,\n parentName: formattedName,\n })\n graphqlResult.globals.graphQL[slug] = {\n type: buildObjectType({\n name: formattedName,\n config,\n fields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: formattedName,\n }),\n mutationInputType: updateMutationInputType\n ? new GraphQLNonNull(updateMutationInputType)\n : null,\n }\n\n const queriesEnabled = typeof global.graphQL !== 'object' || !global.graphQL.disableQueries\n const mutationsEnabled = typeof global.graphQL !== 'object' || !global.graphQL.disableMutations\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[formattedName] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: findOne(global),\n }\n\n graphqlResult.Query.fields[`docAccess${formattedName}`] = {\n type: buildPolicyType({\n type: 'global',\n entity: global,\n scope: 'docAccess',\n typeSuffix: 'DocAccess',\n }),\n resolve: docAccessResolver(global),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`update${formattedName}`] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n ...(updateMutationInputType\n ? { data: { type: graphqlResult.globals.graphQL[slug].mutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: update(global),\n }\n }\n\n if (global.versions) {\n const idType = config.db.defaultIDType === 'number' ? GraphQLInt : GraphQLString\n\n const versionGlobalFields: Field[] = [\n ...buildVersionGlobalFields(config, global),\n {\n name: 'id',\n type: config.db.defaultIDType as 'text',\n },\n {\n name: 'createdAt',\n type: 'date',\n label: 'Created At',\n },\n {\n name: 'updatedAt',\n type: 'date',\n label: 'Updated At',\n },\n ]\n\n graphqlResult.globals.graphQL[slug].versionType = buildObjectType({\n name: `${formattedName}Version`,\n config,\n fields: versionGlobalFields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: `${formattedName}Version`,\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`version${formatName(formattedName)}`] = {\n type: graphqlResult.globals.graphQL[slug].versionType,\n args: {\n id: { type: idType },\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: findVersionByID(global),\n }\n graphqlResult.Query.fields[`versions${formattedName}`] = {\n type: buildPaginatedListType(\n `versions${formatName(formattedName)}`,\n graphqlResult.globals.graphQL[slug].versionType,\n ),\n args: {\n where: {\n type: buildWhereInputType({\n name: `versions${formattedName}`,\n fields: versionGlobalFields,\n parentName: `versions${formattedName}`,\n }),\n },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n },\n resolve: findVersions(global),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`restoreVersion${formatName(formattedName)}`] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n id: { type: idType },\n draft: { type: GraphQLBoolean },\n },\n resolve: restoreVersion(global),\n }\n }\n }\n })\n}\n"],"names":["GraphQLBoolean","GraphQLInt","GraphQLNonNull","GraphQLString","pluralize","singular","buildVersionGlobalFields","toWords","docAccessResolver","findOne","findVersionByID","findVersions","restoreVersion","update","formatName","buildMutationInputType","buildObjectType","buildPaginatedListType","buildPolicyType","buildWhereInputType","initGlobals","config","graphqlResult","Object","keys","globals","forEach","slug","global","fields","graphQL","versions","formattedName","name","forceNullableObjectType","Boolean","drafts","updateMutationInputType","parentIsLocalized","parentName","type","forceNullable","mutationInputType","queriesEnabled","disableQueries","mutationsEnabled","disableMutations","Query","args","draft","localization","fallbackLocale","types","fallbackLocaleInputType","locale","localeInputType","resolve","entity","scope","typeSuffix","Mutation","data","idType","db","defaultIDType","versionGlobalFields","label","versionType","id","where","limit","page","pagination","sort"],"mappings":"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"}
1
+ {"version":3,"sources":["../../src/schema/initGlobals.ts"],"sourcesContent":["import { GraphQLBoolean, GraphQLInt, GraphQLNonNull, GraphQLString } from 'graphql'\nimport pluralize from 'pluralize'\nconst { singular } = pluralize\n\nimport type { Field, GraphQLInfo, SanitizedConfig, SanitizedGlobalConfig } from 'payload'\n\nimport { buildVersionGlobalFields, toWords } from 'payload'\n\nimport { docAccessResolver } from '../resolvers/globals/docAccess.js'\nimport { findOne } from '../resolvers/globals/findOne.js'\nimport { findVersionByID } from '../resolvers/globals/findVersionByID.js'\nimport { findVersions } from '../resolvers/globals/findVersions.js'\nimport { restoreVersion } from '../resolvers/globals/restoreVersion.js'\nimport { update } from '../resolvers/globals/update.js'\nimport { formatName } from '../utilities/formatName.js'\nimport { buildMutationInputType } from './buildMutationInputType.js'\nimport { buildObjectType } from './buildObjectType.js'\nimport { buildPaginatedListType } from './buildPaginatedListType.js'\nimport { buildPolicyType } from './buildPoliciesType.js'\nimport { buildWhereInputType } from './buildWhereInputType.js'\n\ntype InitGlobalsGraphQLArgs = {\n config: SanitizedConfig\n graphqlResult: GraphQLInfo\n}\nexport function initGlobals({ config, graphqlResult }: InitGlobalsGraphQLArgs): void {\n Object.keys(graphqlResult.globals.config).forEach((slug) => {\n const global: SanitizedGlobalConfig = graphqlResult.globals.config[slug]\n const { fields, graphQL, versions } = global\n\n if (graphQL === false) {\n return\n }\n\n const formattedName = graphQL?.name ? graphQL.name : singular(toWords(global.slug, true))\n\n const forceNullableObjectType = Boolean(versions?.drafts)\n\n if (!graphqlResult.globals.graphQL) {\n graphqlResult.globals.graphQL = {}\n }\n\n const updateMutationInputType = buildMutationInputType({\n name: formattedName,\n config,\n fields,\n graphqlResult,\n parentIsLocalized: false,\n parentName: formattedName,\n })\n graphqlResult.globals.graphQL[slug] = {\n type: buildObjectType({\n name: formattedName,\n config,\n fields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: formattedName,\n }),\n mutationInputType: updateMutationInputType\n ? new GraphQLNonNull(updateMutationInputType)\n : null,\n }\n\n const queriesEnabled = typeof global.graphQL !== 'object' || !global.graphQL.disableQueries\n const mutationsEnabled = typeof global.graphQL !== 'object' || !global.graphQL.disableMutations\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[formattedName] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n select: { type: GraphQLBoolean },\n },\n resolve: findOne(global),\n }\n\n graphqlResult.Query.fields[`docAccess${formattedName}`] = {\n type: buildPolicyType({\n type: 'global',\n entity: global,\n scope: 'docAccess',\n typeSuffix: 'DocAccess',\n }),\n resolve: docAccessResolver(global),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`update${formattedName}`] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n ...(updateMutationInputType\n ? { data: { type: graphqlResult.globals.graphQL[slug].mutationInputType } }\n : {}),\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n },\n resolve: update(global),\n }\n }\n\n if (global.versions) {\n const idType = config.db.defaultIDType === 'number' ? GraphQLInt : GraphQLString\n\n const versionGlobalFields: Field[] = [\n ...buildVersionGlobalFields(config, global),\n {\n name: 'id',\n type: config.db.defaultIDType as 'text',\n },\n {\n name: 'createdAt',\n type: 'date',\n label: 'Created At',\n },\n {\n name: 'updatedAt',\n type: 'date',\n label: 'Updated At',\n },\n ]\n\n graphqlResult.globals.graphQL[slug].versionType = buildObjectType({\n name: `${formattedName}Version`,\n config,\n fields: versionGlobalFields,\n forceNullable: forceNullableObjectType,\n graphqlResult,\n parentName: `${formattedName}Version`,\n })\n\n if (queriesEnabled) {\n graphqlResult.Query.fields[`version${formatName(formattedName)}`] = {\n type: graphqlResult.globals.graphQL[slug].versionType,\n args: {\n id: { type: idType },\n draft: { type: GraphQLBoolean },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n select: { type: GraphQLBoolean },\n },\n resolve: findVersionByID(global),\n }\n graphqlResult.Query.fields[`versions${formattedName}`] = {\n type: buildPaginatedListType(\n `versions${formatName(formattedName)}`,\n graphqlResult.globals.graphQL[slug].versionType,\n ),\n args: {\n where: {\n type: buildWhereInputType({\n name: `versions${formattedName}`,\n fields: versionGlobalFields,\n parentName: `versions${formattedName}`,\n }),\n },\n ...(config.localization\n ? {\n fallbackLocale: { type: graphqlResult.types.fallbackLocaleInputType },\n locale: { type: graphqlResult.types.localeInputType },\n }\n : {}),\n limit: { type: GraphQLInt },\n page: { type: GraphQLInt },\n pagination: { type: GraphQLBoolean },\n select: { type: GraphQLBoolean },\n sort: { type: GraphQLString },\n },\n resolve: findVersions(global),\n }\n }\n\n if (mutationsEnabled) {\n graphqlResult.Mutation.fields[`restoreVersion${formatName(formattedName)}`] = {\n type: graphqlResult.globals.graphQL[slug].type,\n args: {\n id: { type: idType },\n draft: { type: GraphQLBoolean },\n },\n resolve: restoreVersion(global),\n }\n }\n }\n })\n}\n"],"names":["GraphQLBoolean","GraphQLInt","GraphQLNonNull","GraphQLString","pluralize","singular","buildVersionGlobalFields","toWords","docAccessResolver","findOne","findVersionByID","findVersions","restoreVersion","update","formatName","buildMutationInputType","buildObjectType","buildPaginatedListType","buildPolicyType","buildWhereInputType","initGlobals","config","graphqlResult","Object","keys","globals","forEach","slug","global","fields","graphQL","versions","formattedName","name","forceNullableObjectType","Boolean","drafts","updateMutationInputType","parentIsLocalized","parentName","type","forceNullable","mutationInputType","queriesEnabled","disableQueries","mutationsEnabled","disableMutations","Query","args","draft","localization","fallbackLocale","types","fallbackLocaleInputType","locale","localeInputType","select","resolve","entity","scope","typeSuffix","Mutation","data","idType","db","defaultIDType","versionGlobalFields","label","versionType","id","where","limit","page","pagination","sort"],"mappings":"AAAA,SAASA,cAAc,EAAEC,UAAU,EAAEC,cAAc,EAAEC,aAAa,QAAQ,UAAS;AACnF,OAAOC,eAAe,YAAW;AACjC,MAAM,EAAEC,QAAQ,EAAE,GAAGD;AAIrB,SAASE,wBAAwB,EAAEC,OAAO,QAAQ,UAAS;AAE3D,SAASC,iBAAiB,QAAQ,oCAAmC;AACrE,SAASC,OAAO,QAAQ,kCAAiC;AACzD,SAASC,eAAe,QAAQ,0CAAyC;AACzE,SAASC,YAAY,QAAQ,uCAAsC;AACnE,SAASC,cAAc,QAAQ,yCAAwC;AACvE,SAASC,MAAM,QAAQ,iCAAgC;AACvD,SAASC,UAAU,QAAQ,6BAA4B;AACvD,SAASC,sBAAsB,QAAQ,8BAA6B;AACpE,SAASC,eAAe,QAAQ,uBAAsB;AACtD,SAASC,sBAAsB,QAAQ,8BAA6B;AACpE,SAASC,eAAe,QAAQ,yBAAwB;AACxD,SAASC,mBAAmB,QAAQ,2BAA0B;AAM9D,OAAO,SAASC,YAAY,EAAEC,MAAM,EAAEC,aAAa,EAA0B;IAC3EC,OAAOC,IAAI,CAACF,cAAcG,OAAO,CAACJ,MAAM,EAAEK,OAAO,CAAC,CAACC;QACjD,MAAMC,SAAgCN,cAAcG,OAAO,CAACJ,MAAM,CAACM,KAAK;QACxE,MAAM,EAAEE,MAAM,EAAEC,OAAO,EAAEC,QAAQ,EAAE,GAAGH;QAEtC,IAAIE,YAAY,OAAO;YACrB;QACF;QAEA,MAAME,gBAAgBF,SAASG,OAAOH,QAAQG,IAAI,GAAG5B,SAASE,QAAQqB,OAAOD,IAAI,EAAE;QAEnF,MAAMO,0BAA0BC,QAAQJ,UAAUK;QAElD,IAAI,CAACd,cAAcG,OAAO,CAACK,OAAO,EAAE;YAClCR,cAAcG,OAAO,CAACK,OAAO,GAAG,CAAC;QACnC;QAEA,MAAMO,0BAA0BtB,uBAAuB;YACrDkB,MAAMD;YACNX;YACAQ;YACAP;YACAgB,mBAAmB;YACnBC,YAAYP;QACd;QACAV,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,GAAG;YACpCa,MAAMxB,gBAAgB;gBACpBiB,MAAMD;gBACNX;gBACAQ;gBACAY,eAAeP;gBACfZ;gBACAiB,YAAYP;YACd;YACAU,mBAAmBL,0BACf,IAAInC,eAAemC,2BACnB;QACN;QAEA,MAAMM,iBAAiB,OAAOf,OAAOE,OAAO,KAAK,YAAY,CAACF,OAAOE,OAAO,CAACc,cAAc;QAC3F,MAAMC,mBAAmB,OAAOjB,OAAOE,OAAO,KAAK,YAAY,CAACF,OAAOE,OAAO,CAACgB,gBAAgB;QAE/F,IAAIH,gBAAgB;YAClBrB,cAAcyB,KAAK,CAAClB,MAAM,CAACG,cAAc,GAAG;gBAC1CQ,MAAMlB,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACa,IAAI;gBAC9CQ,MAAM;oBACJC,OAAO;wBAAET,MAAMxC;oBAAe;oBAC9B,GAAIqB,OAAO6B,YAAY,GACnB;wBACEC,gBAAgB;4BAAEX,MAAMlB,cAAc8B,KAAK,CAACC,uBAAuB;wBAAC;wBACpEC,QAAQ;4BAAEd,MAAMlB,cAAc8B,KAAK,CAACG,eAAe;wBAAC;oBACtD,IACA,CAAC,CAAC;oBACNC,QAAQ;wBAAEhB,MAAMxC;oBAAe;gBACjC;gBACAyD,SAAShD,QAAQmB;YACnB;YAEAN,cAAcyB,KAAK,CAAClB,MAAM,CAAC,CAAC,SAAS,EAAEG,eAAe,CAAC,GAAG;gBACxDQ,MAAMtB,gBAAgB;oBACpBsB,MAAM;oBACNkB,QAAQ9B;oBACR+B,OAAO;oBACPC,YAAY;gBACd;gBACAH,SAASjD,kBAAkBoB;YAC7B;QACF;QAEA,IAAIiB,kBAAkB;YACpBvB,cAAcuC,QAAQ,CAAChC,MAAM,CAAC,CAAC,MAAM,EAAEG,eAAe,CAAC,GAAG;gBACxDQ,MAAMlB,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACa,IAAI;gBAC9CQ,MAAM;oBACJ,GAAIX,0BACA;wBAAEyB,MAAM;4BAAEtB,MAAMlB,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACe,iBAAiB;wBAAC;oBAAE,IACxE,CAAC,CAAC;oBACNO,OAAO;wBAAET,MAAMxC;oBAAe;oBAC9B,GAAIqB,OAAO6B,YAAY,GACnB;wBACEI,QAAQ;4BAAEd,MAAMlB,cAAc8B,KAAK,CAACG,eAAe;wBAAC;oBACtD,IACA,CAAC,CAAC;gBACR;gBACAE,SAAS5C,OAAOe;YAClB;QACF;QAEA,IAAIA,OAAOG,QAAQ,EAAE;YACnB,MAAMgC,SAAS1C,OAAO2C,EAAE,CAACC,aAAa,KAAK,WAAWhE,aAAaE;YAEnE,MAAM+D,sBAA+B;mBAChC5D,yBAAyBe,QAAQO;gBACpC;oBACEK,MAAM;oBACNO,MAAMnB,OAAO2C,EAAE,CAACC,aAAa;gBAC/B;gBACA;oBACEhC,MAAM;oBACNO,MAAM;oBACN2B,OAAO;gBACT;gBACA;oBACElC,MAAM;oBACNO,MAAM;oBACN2B,OAAO;gBACT;aACD;YAED7C,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACyC,WAAW,GAAGpD,gBAAgB;gBAChEiB,MAAM,GAAGD,cAAc,OAAO,CAAC;gBAC/BX;gBACAQ,QAAQqC;gBACRzB,eAAeP;gBACfZ;gBACAiB,YAAY,GAAGP,cAAc,OAAO,CAAC;YACvC;YAEA,IAAIW,gBAAgB;gBAClBrB,cAAcyB,KAAK,CAAClB,MAAM,CAAC,CAAC,OAAO,EAAEf,WAAWkB,gBAAgB,CAAC,GAAG;oBAClEQ,MAAMlB,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACyC,WAAW;oBACrDpB,MAAM;wBACJqB,IAAI;4BAAE7B,MAAMuB;wBAAO;wBACnBd,OAAO;4BAAET,MAAMxC;wBAAe;wBAC9B,GAAIqB,OAAO6B,YAAY,GACnB;4BACEC,gBAAgB;gCAAEX,MAAMlB,cAAc8B,KAAK,CAACC,uBAAuB;4BAAC;4BACpEC,QAAQ;gCAAEd,MAAMlB,cAAc8B,KAAK,CAACG,eAAe;4BAAC;wBACtD,IACA,CAAC,CAAC;wBACNC,QAAQ;4BAAEhB,MAAMxC;wBAAe;oBACjC;oBACAyD,SAAS/C,gBAAgBkB;gBAC3B;gBACAN,cAAcyB,KAAK,CAAClB,MAAM,CAAC,CAAC,QAAQ,EAAEG,eAAe,CAAC,GAAG;oBACvDQ,MAAMvB,uBACJ,CAAC,QAAQ,EAAEH,WAAWkB,gBAAgB,EACtCV,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACyC,WAAW;oBAEjDpB,MAAM;wBACJsB,OAAO;4BACL9B,MAAMrB,oBAAoB;gCACxBc,MAAM,CAAC,QAAQ,EAAED,eAAe;gCAChCH,QAAQqC;gCACR3B,YAAY,CAAC,QAAQ,EAAEP,eAAe;4BACxC;wBACF;wBACA,GAAIX,OAAO6B,YAAY,GACnB;4BACEC,gBAAgB;gCAAEX,MAAMlB,cAAc8B,KAAK,CAACC,uBAAuB;4BAAC;4BACpEC,QAAQ;gCAAEd,MAAMlB,cAAc8B,KAAK,CAACG,eAAe;4BAAC;wBACtD,IACA,CAAC,CAAC;wBACNgB,OAAO;4BAAE/B,MAAMvC;wBAAW;wBAC1BuE,MAAM;4BAAEhC,MAAMvC;wBAAW;wBACzBwE,YAAY;4BAAEjC,MAAMxC;wBAAe;wBACnCwD,QAAQ;4BAAEhB,MAAMxC;wBAAe;wBAC/B0E,MAAM;4BAAElC,MAAMrC;wBAAc;oBAC9B;oBACAsD,SAAS9C,aAAaiB;gBACxB;YACF;YAEA,IAAIiB,kBAAkB;gBACpBvB,cAAcuC,QAAQ,CAAChC,MAAM,CAAC,CAAC,cAAc,EAAEf,WAAWkB,gBAAgB,CAAC,GAAG;oBAC5EQ,MAAMlB,cAAcG,OAAO,CAACK,OAAO,CAACH,KAAK,CAACa,IAAI;oBAC9CQ,MAAM;wBACJqB,IAAI;4BAAE7B,MAAMuB;wBAAO;wBACnBd,OAAO;4BAAET,MAAMxC;wBAAe;oBAChC;oBACAyD,SAAS7C,eAAegB;gBAC1B;YACF;QACF;IACF;AACF"}
@@ -0,0 +1,8 @@
1
+ import type { GraphQLResolveInfo } from 'graphql';
2
+ import type { TypedCollectionSelect } from 'payload';
3
+ export declare function buildSelectForCollection(info: GraphQLResolveInfo): SelectType;
4
+ export declare function buildSelectForCollectionMany(info: GraphQLResolveInfo): SelectType;
5
+ export declare function resolveSelect(info: GraphQLResolveInfo, select: SelectType): SelectType;
6
+ type SelectType = TypedCollectionSelect['any'];
7
+ export {};
8
+ //# sourceMappingURL=select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../src/utilities/select.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAqB,kBAAkB,EAAmB,MAAM,SAAS,CAAA;AACrF,OAAO,KAAK,EAA2C,qBAAqB,EAAE,MAAM,SAAS,CAAA;AAI7F,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,kBAAkB,GAAG,UAAU,CAE7E;AACD,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,kBAAkB,GAAG,UAAU,CAEjF;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,kBAAkB,EAAE,MAAM,EAAE,UAAU,GAAG,UAAU,CAiCtF;AAuED,KAAK,UAAU,GAAG,qBAAqB,CAAC,KAAK,CAAC,CAAA"}
@@ -0,0 +1,91 @@
1
+ import { getNamedType, isInterfaceType, isObjectType, isUnionType, Kind } from 'graphql';
2
+ export function buildSelectForCollection(info) {
3
+ return buildSelect(info);
4
+ }
5
+ export function buildSelectForCollectionMany(info) {
6
+ return buildSelect(info).docs;
7
+ }
8
+ export function resolveSelect(info, select) {
9
+ if (select) {
10
+ const traversePath = [];
11
+ const traverseTree = (path)=>{
12
+ const pathKey = path.key;
13
+ const pathType = info.schema.getType(path.typename);
14
+ if (pathType) {
15
+ const field = pathType?.getFields()?.[pathKey]?.extensions?.field;
16
+ if (field?.type === 'join') {
17
+ path = path.prev;
18
+ traversePath.unshift('docs');
19
+ }
20
+ if (field?.type === 'relationship' && Array.isArray(field.relationTo)) {
21
+ path = path.prev;
22
+ traversePath.unshift('value');
23
+ }
24
+ if (field) {
25
+ traversePath.unshift(field.name);
26
+ }
27
+ }
28
+ if (path.prev) {
29
+ traverseTree(path.prev);
30
+ }
31
+ };
32
+ traverseTree(info.path);
33
+ traversePath.forEach((key)=>{
34
+ select = select?.[key];
35
+ });
36
+ }
37
+ return select;
38
+ }
39
+ function buildSelect(info) {
40
+ const returnType = getNamedType(info.returnType);
41
+ const selectionSet = info.fieldNodes[0].selectionSet;
42
+ if (!returnType) return;
43
+ return buildSelectTree(info, selectionSet, returnType);
44
+ }
45
+ function buildSelectTree(info, selectionSet, type) {
46
+ const fieldMap = type.getFields?.();
47
+ const fieldTree = {};
48
+ for (const selection of selectionSet.selections){
49
+ switch(selection.kind){
50
+ case Kind.FIELD:
51
+ {
52
+ const fieldName = selection.name.value;
53
+ const fieldSchema = fieldMap?.[fieldName];
54
+ const field = fieldSchema?.extensions?.field;
55
+ const fieldNameOriginal = field?.name || fieldName;
56
+ if (fieldName === '__typename') continue;
57
+ if (fieldSchema == undefined) continue;
58
+ if (selection.selectionSet) {
59
+ const type = getNamedType(fieldSchema.type);
60
+ if (isObjectType(type) || isInterfaceType(type) || isUnionType(type)) {
61
+ fieldTree[fieldNameOriginal] = buildSelectTree(info, selection.selectionSet, type);
62
+ continue;
63
+ }
64
+ }
65
+ fieldTree[fieldNameOriginal] = true;
66
+ break;
67
+ }
68
+ case Kind.FRAGMENT_SPREAD:
69
+ {
70
+ const fragmentName = selection.name.value;
71
+ const fragment = info.fragments[fragmentName];
72
+ const fragmentType = fragment && info.schema.getType(fragment.typeCondition.name.value);
73
+ if (fragmentType) {
74
+ Object.assign(fieldTree, buildSelectTree(info, fragment.selectionSet, fragmentType));
75
+ }
76
+ break;
77
+ }
78
+ case Kind.INLINE_FRAGMENT:
79
+ {
80
+ const fragmentType = selection.typeCondition ? info.schema.getType(selection.typeCondition.name.value) : type;
81
+ if (fragmentType) {
82
+ Object.assign(fieldTree, buildSelectTree(info, selection.selectionSet, fragmentType));
83
+ }
84
+ break;
85
+ }
86
+ }
87
+ }
88
+ return fieldTree;
89
+ }
90
+
91
+ //# sourceMappingURL=select.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/utilities/select.ts"],"sourcesContent":["import type { GraphQLObjectType, GraphQLResolveInfo, SelectionSetNode} from 'graphql'\nimport type { FieldBase, JoinField, RelationshipField, TypedCollectionSelect } from 'payload'\n\nimport { getNamedType, isInterfaceType, isObjectType, isUnionType, Kind } from 'graphql'\n\nexport function buildSelectForCollection(info: GraphQLResolveInfo): SelectType {\n return buildSelect(info)\n}\nexport function buildSelectForCollectionMany(info: GraphQLResolveInfo): SelectType {\n return buildSelect(info).docs as SelectType\n}\n\nexport function resolveSelect(info: GraphQLResolveInfo, select: SelectType): SelectType {\n if (select) {\n const traversePath: string[] = []\n const traverseTree = (path: GraphQLResolveInfo['path']) => {\n const pathKey = path.key\n const pathType = info.schema.getType(path.typename) as GraphQLObjectType\n\n if (pathType) {\n const field = pathType?.getFields()?.[pathKey]?.extensions?.field as JoinField | RelationshipField\n\n if (field?.type === 'join') {\n path = path.prev\n traversePath.unshift('docs')\n }\n if (field?.type === 'relationship' && Array.isArray(field.relationTo)) {\n path = path.prev\n traversePath.unshift('value')\n }\n if (field) {\n traversePath.unshift(field.name)\n }\n }\n\n if (path.prev) {\n traverseTree(path.prev)\n }\n }\n\n traverseTree(info.path)\n traversePath.forEach(key => { select = select?.[key] as SelectType })\n }\n\n return select\n}\n\nfunction buildSelect(info: GraphQLResolveInfo) {\n const returnType = getNamedType(info.returnType) as GraphQLObjectType\n const selectionSet = info.fieldNodes[0].selectionSet\n\n if (!returnType) return\n\n return buildSelectTree(info, selectionSet, returnType)\n}\nfunction buildSelectTree(\n info: GraphQLResolveInfo,\n selectionSet: SelectionSetNode,\n type: GraphQLObjectType\n): SelectType {\n const fieldMap = type.getFields?.()\n const fieldTree: SelectType = {}\n\n for (const selection of selectionSet.selections) {\n switch (selection.kind) {\n case Kind.FIELD: {\n const fieldName = selection.name.value\n const fieldSchema = fieldMap?.[fieldName]\n\n const field = fieldSchema?.extensions?.field as FieldBase\n const fieldNameOriginal = field?.name || fieldName\n\n if (fieldName === '__typename') continue\n if (fieldSchema == undefined) continue\n\n if (selection.selectionSet) {\n const type = getNamedType(fieldSchema.type) as GraphQLObjectType\n\n if (isObjectType(type) || isInterfaceType(type) || isUnionType(type)) {\n fieldTree[fieldNameOriginal] = buildSelectTree(info, selection.selectionSet, type)\n continue\n }\n }\n\n fieldTree[fieldNameOriginal] = true\n break\n }\n\n case Kind.FRAGMENT_SPREAD: {\n const fragmentName = selection.name.value\n const fragment = info.fragments[fragmentName]\n const fragmentType = fragment && info.schema.getType(fragment.typeCondition.name.value) as GraphQLObjectType\n\n if (fragmentType) {\n Object.assign(fieldTree, buildSelectTree(info, fragment.selectionSet, fragmentType))\n }\n break\n }\n\n case Kind.INLINE_FRAGMENT: {\n const fragmentType = selection.typeCondition\n ? info.schema.getType(selection.typeCondition.name.value) as GraphQLObjectType\n : type\n\n\n if (fragmentType) {\n Object.assign(fieldTree, buildSelectTree(info, selection.selectionSet, fragmentType))\n }\n break\n }\n }\n }\n\n return fieldTree\n}\n\ntype SelectType = TypedCollectionSelect['any']\n"],"names":["getNamedType","isInterfaceType","isObjectType","isUnionType","Kind","buildSelectForCollection","info","buildSelect","buildSelectForCollectionMany","docs","resolveSelect","select","traversePath","traverseTree","path","pathKey","key","pathType","schema","getType","typename","field","getFields","extensions","type","prev","unshift","Array","isArray","relationTo","name","forEach","returnType","selectionSet","fieldNodes","buildSelectTree","fieldMap","fieldTree","selection","selections","kind","FIELD","fieldName","value","fieldSchema","fieldNameOriginal","undefined","FRAGMENT_SPREAD","fragmentName","fragment","fragments","fragmentType","typeCondition","Object","assign","INLINE_FRAGMENT"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payloadcms/graphql",
3
- "version": "3.59.0-internal.cb85185",
3
+ "version": "3.59.0-internal.cf8cc72",
4
4
  "homepage": "https://payloadcms.com",
5
5
  "repository": {
6
6
  "type": "git",
@@ -53,11 +53,11 @@
53
53
  "@types/pluralize": "^0.0.33",
54
54
  "graphql-http": "^1.22.0",
55
55
  "@payloadcms/eslint-config": "3.28.0",
56
- "payload": "3.59.0-internal.cb85185"
56
+ "payload": "3.59.0-internal.cf8cc72"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "graphql": "^16.8.1",
60
- "payload": "3.59.0-internal.cb85185"
60
+ "payload": "3.59.0-internal.cf8cc72"
61
61
  },
62
62
  "scripts": {
63
63
  "build": "pnpm build:types && pnpm build:swc",