feat: AcfSocial / parseAcfSocial

This commit is contained in:
2026-01-30 11:45:39 -05:00
parent 6dd13ead91
commit 3199835e83
11 changed files with 245 additions and 33 deletions

View File

@@ -3639,6 +3639,58 @@ interface GroupAbstractMedia_Fields implements AcfFieldGroup & AcfFieldGroupFiel
objectFit: String!
}
"""
The "GroupAbstractSocial" Field Group. Added to the Schema by "WPGraphQL for ACF".
"""
type GroupAbstractSocial implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractSocial_Fields {
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
"""
Field of the "repeater" Field Type added to the schema as part of the "GroupAbstractSocial" Field Group
"""
profiles: [GroupAbstractSocialProfiles]!
}
"""
The "GroupAbstractSocialProfiles" Field Group. Added to the Schema by "WPGraphQL for ACF".
"""
type GroupAbstractSocialProfiles implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractSocialProfiles_Fields {
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
"""
Field of the "url" Field Type added to the schema as part of the "GroupAbstractSocialProfiles" Field Group
"""
url: String!
}
"""
Interface representing fields of the ACF "GroupAbstractSocialProfiles" Field Group
"""
interface GroupAbstractSocialProfiles_Fields implements AcfFieldGroup & AcfFieldGroupFields {
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
"""
Field of the "url" Field Type added to the schema as part of the "GroupAbstractSocialProfiles" Field Group
"""
url: String!
}
"""
Interface representing fields of the ACF "GroupAbstractSocial" Field Group
"""
interface GroupAbstractSocial_Fields implements AcfFieldGroup & AcfFieldGroupFields {
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
"""
Field of the "repeater" Field Type added to the schema as part of the "GroupAbstractSocial" Field Group
"""
profiles: [GroupAbstractSocialProfiles]!
}
"""
The "GroupLayoutContained" Field Group. Added to the Schema by "WPGraphQL for ACF".
"""
@@ -3714,7 +3766,7 @@ interface GroupPostPage_Fields implements AcfFieldGroup & AcfFieldGroupFields &
"""
The "GroupSiteOptions" Field Group. Added to the Schema by "WPGraphQL for ACF".
"""
type GroupSiteOptions implements AcfFieldGroup & AcfFieldGroupFields & GroupSiteOptions_Fields {
type GroupSiteOptions implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractSocial_Fields & GroupSiteOptions_Fields {
"""
Field of the "email" Field Type added to the schema as part of the "GroupSiteOptions" Field Group
"""
@@ -3732,6 +3784,11 @@ type GroupSiteOptions implements AcfFieldGroup & AcfFieldGroupFields & GroupSite
Field of the "phone" Field Type added to the schema as part of the "GroupSiteOptions" Field Group
"""
phoneNumber: AcfPhone!
"""
Field of the "repeater" Field Type added to the schema as part of the "GroupAbstractSocial" Field Group
"""
profiles: [GroupAbstractSocialProfiles]!
}
"""
@@ -3763,7 +3820,7 @@ interface GroupSiteOptionsLinks_Fields implements AcfFieldGroup & AcfFieldGroupF
"""
Interface representing fields of the ACF "GroupSiteOptions" Field Group
"""
interface GroupSiteOptions_Fields implements AcfFieldGroup & AcfFieldGroupFields {
interface GroupSiteOptions_Fields implements AcfFieldGroup & AcfFieldGroupFields & GroupAbstractSocial_Fields {
"""
Field of the "email" Field Type added to the schema as part of the "GroupSiteOptions" Field Group
"""
@@ -3781,6 +3838,11 @@ interface GroupSiteOptions_Fields implements AcfFieldGroup & AcfFieldGroupFields
Field of the "phone" Field Type added to the schema as part of the "GroupSiteOptions" Field Group
"""
phoneNumber: AcfPhone!
"""
Field of the "repeater" Field Type added to the schema as part of the "GroupAbstractSocial" Field Group
"""
profiles: [GroupAbstractSocialProfiles]!
}
"""