generated from pascalmartineau/wp-skeleton
chore: update schema
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m5s
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m5s
This commit is contained in:
@@ -267,9 +267,6 @@ type AcfTermNodeConnectionPageInfo implements PageInfo & TermNodeConnectionPageI
|
||||
|
||||
"""ACF Extended Pro Address field with optional sub-fields"""
|
||||
type Address {
|
||||
"""The full address"""
|
||||
address: String
|
||||
|
||||
"""City name"""
|
||||
city: String
|
||||
|
||||
@@ -277,7 +274,10 @@ type Address {
|
||||
country: String
|
||||
|
||||
"""Country abbreviation (ISO code)"""
|
||||
countryShort: String
|
||||
countryCode: String
|
||||
|
||||
"""The full address (formatted)"""
|
||||
formatted: String
|
||||
|
||||
"""Latitude coordinate"""
|
||||
lat: Float
|
||||
@@ -298,7 +298,7 @@ type Address {
|
||||
state: String
|
||||
|
||||
"""State or province abbreviation"""
|
||||
stateShort: String
|
||||
stateCode: String
|
||||
|
||||
"""Street name"""
|
||||
streetName: String
|
||||
@@ -6796,6 +6796,84 @@ type GeneralSettings {
|
||||
url: String
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractAddressCity" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupAbstractAddressCity implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractAddressCity_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressCity" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupAbstractAddressCity" Field Group
|
||||
"""
|
||||
interface GroupAbstractAddressCity_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressCity" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractAddressContact" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupAbstractAddressContact implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractAddressContact_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressContact" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupAbstractAddressContact" Field Group
|
||||
"""
|
||||
interface GroupAbstractAddressContact_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressContact" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractAddressGeo" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupAbstractAddressGeo implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractAddressGeo_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressGeo" Field Group
|
||||
"""
|
||||
address: Address
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupAbstractAddressGeo" Field Group
|
||||
"""
|
||||
interface GroupAbstractAddressGeo_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupAbstractAddressGeo" Field Group
|
||||
"""
|
||||
address: Address
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractBuilder" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
@@ -6902,6 +6980,62 @@ interface GroupAbstractBuilder_Fields implements AcfFieldGroup & AcfFieldGroupFi
|
||||
sections: [GroupAbstractBuilderSections_Layout]
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractContact" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupAbstractContact implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractContact_Fields {
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
firstName: String!
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
lastName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupAbstractContact" Field Group
|
||||
"""
|
||||
interface GroupAbstractContact_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
firstName: String!
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
lastName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupAbstractCredits" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
@@ -7623,7 +7757,7 @@ type GroupPostContributorLocality implements AcfFieldGroup & AcfFieldGroupFields
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostContributorLocality" Field Group
|
||||
"""
|
||||
address: Address
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
@@ -7636,7 +7770,7 @@ interface GroupPostContributorLocality_Fields implements AcfFieldGroup & AcfFiel
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostContributorLocality" Field Group
|
||||
"""
|
||||
address: Address
|
||||
address: Address!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
@@ -7858,11 +7992,6 @@ interface GroupPostEvent_Fields implements AcfFieldGroup & AcfFieldGroupFields &
|
||||
The "GroupPostLocation" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostLocation implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractEntity_Fields & GroupAbstractGallery_Fields & GroupAbstractSocial_Fields & GroupPostLocation_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostLocation" Field Group
|
||||
"""
|
||||
address: Address
|
||||
|
||||
"""
|
||||
Field of the "repeater" Field Type added to the schema as part of the "GroupPostLocation" Field Group
|
||||
"""
|
||||
@@ -7932,11 +8061,6 @@ interface GroupPostLocationConfigurations_Fields implements AcfFieldGroup & AcfF
|
||||
Interface representing fields of the ACF "GroupPostLocation" Field Group
|
||||
"""
|
||||
interface GroupPostLocation_Fields implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractEntity_Fields & GroupAbstractGallery_Fields & GroupAbstractSocial_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostLocation" Field Group
|
||||
"""
|
||||
address: Address
|
||||
|
||||
"""
|
||||
Field of the "repeater" Field Type added to the schema as part of the "GroupPostLocation" Field Group
|
||||
"""
|
||||
@@ -8005,21 +8129,11 @@ interface GroupPostPage_Fields implements AcfFieldGroup & AcfFieldGroupFields &
|
||||
"""
|
||||
The "GroupPostProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfile_Fields {
|
||||
type GroupPostProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractContact_Fields & GroupPostProfile_Fields {
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
billing: GroupPostProfileBilling
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
"""
|
||||
collectiveProfile: GroupPostProfileCollectiveProfile
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
"""
|
||||
contact: GroupPostProfileContact
|
||||
email: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
@@ -8030,19 +8144,19 @@ type GroupPostProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPost
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
individualProfile: GroupPostProfileIndividualProfile
|
||||
firstName: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
institutionProfile: GroupPostProfileInstitutionProfile
|
||||
lastName: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
organizationProfile: GroupPostProfileOrganizationProfile
|
||||
phone: String!
|
||||
|
||||
"""
|
||||
Field of the "select" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
@@ -8055,134 +8169,6 @@ type GroupPostProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPost
|
||||
sameAsContact: Boolean
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileBilling" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileBilling implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileBilling_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
personName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
interface GroupPostProfileBilling_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
personName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostProfileBilling" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileCollectiveProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileCollectiveProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileCollectiveProfile_Fields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileCollectiveProfile" Field Group
|
||||
"""
|
||||
interface GroupPostProfileCollectiveProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileContact" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileContact implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileContact_Fields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
personName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
interface GroupPostProfileContact_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
address: Address!
|
||||
|
||||
"""
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
email: String!
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
personName: String!
|
||||
|
||||
"""
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostProfileContact" Field Group
|
||||
"""
|
||||
phone: String!
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileEmailPreferences" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
@@ -8239,72 +8225,14 @@ interface GroupPostProfileEmailPreferences_Fields implements AcfFieldGroup & Acf
|
||||
mrc: [String]
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileIndividualProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileIndividualProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileIndividualProfile_Fields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileIndividualProfile" Field Group
|
||||
"""
|
||||
interface GroupPostProfileIndividualProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileInstitutionProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileInstitutionProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileInstitutionProfile_Fields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileInstitutionProfile" Field Group
|
||||
"""
|
||||
interface GroupPostProfileInstitutionProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
The "GroupPostProfileOrganizationProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type GroupPostProfileOrganizationProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileOrganizationProfile_Fields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfileOrganizationProfile" Field Group
|
||||
"""
|
||||
interface GroupPostProfileOrganizationProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "GroupPostProfile" Field Group
|
||||
"""
|
||||
interface GroupPostProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
interface GroupPostProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractContact_Fields {
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "email" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
billing: GroupPostProfileBilling
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
"""
|
||||
collectiveProfile: GroupPostProfileCollectiveProfile
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
"""
|
||||
contact: GroupPostProfileContact
|
||||
email: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
@@ -8315,19 +8243,19 @@ interface GroupPostProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
individualProfile: GroupPostProfileIndividualProfile
|
||||
firstName: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "text" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
institutionProfile: GroupPostProfileInstitutionProfile
|
||||
lastName: String!
|
||||
|
||||
"""
|
||||
Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupAbstractContact" Field Group
|
||||
"""
|
||||
organizationProfile: GroupPostProfileOrganizationProfile
|
||||
phone: String!
|
||||
|
||||
"""
|
||||
Field of the "select" Field Type added to the schema as part of the "GroupPostProfile" Field Group
|
||||
@@ -10685,7 +10613,7 @@ input ListingToTermNodeConnectionWhereArgs {
|
||||
}
|
||||
|
||||
"""The Location type"""
|
||||
type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostLocation {
|
||||
type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostLocation {
|
||||
"""
|
||||
Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root).
|
||||
"""
|
||||
@@ -10869,6 +10797,11 @@ type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentN
|
||||
"""The id field matches the WP_Post->ID field."""
|
||||
locationId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field")
|
||||
|
||||
"""
|
||||
A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types.
|
||||
"""
|
||||
menuOrder: Int
|
||||
|
||||
"""
|
||||
The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time.
|
||||
"""
|
||||
@@ -14133,16 +14066,78 @@ enum PostIdType {
|
||||
The "PostListing" Field Group. Added to the Schema by "WPGraphQL for ACF".
|
||||
"""
|
||||
type PostListing implements AcfFieldGroup & AcfFieldGroupFields & PostListing_Fields {
|
||||
"""
|
||||
Field of the "date_picker" Field Type added to the schema as part of the "PostListing" Field Group (ACF Fields of the date_picker type return a date string according to the RFC3339 spec: https://datatracker.ietf.org/doc/html/rfc3339.)
|
||||
"""
|
||||
deadline: String
|
||||
|
||||
"""
|
||||
Field of the "url" Field Type added to the schema as part of the "PostListing" Field Group
|
||||
"""
|
||||
externalLink: String
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "taxonomy" Field Type added to the schema as part of the "PostListing" Field Group
|
||||
"""
|
||||
listingCategory(
|
||||
"""
|
||||
Cursor used along with the "first" argument to reference where in the dataset to get data
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Cursor used along with the "last" argument to reference where in the dataset to get data
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""The number of items to return after the referenced "after" cursor"""
|
||||
first: Int
|
||||
|
||||
"""The number of items to return before the referenced "before" cursor"""
|
||||
last: Int
|
||||
): AcfTermNodeConnection
|
||||
}
|
||||
|
||||
"""
|
||||
Interface representing fields of the ACF "PostListing" Field Group
|
||||
"""
|
||||
interface PostListing_Fields implements AcfFieldGroup & AcfFieldGroupFields {
|
||||
"""
|
||||
Field of the "date_picker" Field Type added to the schema as part of the "PostListing" Field Group (ACF Fields of the date_picker type return a date string according to the RFC3339 spec: https://datatracker.ietf.org/doc/html/rfc3339.)
|
||||
"""
|
||||
deadline: String
|
||||
|
||||
"""
|
||||
Field of the "url" Field Type added to the schema as part of the "PostListing" Field Group
|
||||
"""
|
||||
externalLink: String
|
||||
|
||||
"""The name of the field group"""
|
||||
fieldGroupName: String @deprecated(reason: "Use __typename instead")
|
||||
|
||||
"""
|
||||
Field of the "taxonomy" Field Type added to the schema as part of the "PostListing" Field Group
|
||||
"""
|
||||
listingCategory(
|
||||
"""
|
||||
Cursor used along with the "first" argument to reference where in the dataset to get data
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Cursor used along with the "last" argument to reference where in the dataset to get data
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""The number of items to return after the referenced "after" cursor"""
|
||||
first: Int
|
||||
|
||||
"""The number of items to return before the referenced "before" cursor"""
|
||||
last: Int
|
||||
): AcfTermNodeConnection
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user