diff --git a/wp-content/themes/ccat/acf-json/acf-translations.php b/wp-content/themes/ccat/acf-json/acf-translations.php
index 7d974c3..e25e577 100644
--- a/wp-content/themes/ccat/acf-json/acf-translations.php
+++ b/wp-content/themes/ccat/acf-json/acf-translations.php
@@ -85,8 +85,8 @@ __( "Location", 'ccat' );
__( "Location type", 'ccat' );
__( "Media type", 'ccat' );
__( "Media(s)", 'ccat' );
-__( "Membership type", 'ccat' );
-__( "Membership(s)", 'ccat' );
+__( "Profile type", 'ccat' );
+__( "Profile(s)", 'ccat' );
__( "Message", 'ccat' );
__( "Minimum price", 'ccat' );
__( "Moral entity", 'ccat' );
@@ -110,7 +110,7 @@ __( "Post – Article", 'ccat' );
__( "Post – Contributor", 'ccat' );
__( "Post – Event", 'ccat' );
__( "Post – Location", 'ccat' );
-__( "Post – Membership", 'ccat' );
+__( "Post – Profile", 'ccat' );
__( "Post – Page", 'ccat' );
__( "Post – Project", 'ccat' );
__( "Post – Representation", 'ccat' );
diff --git a/wp-content/themes/ccat/acf-json/group_post_membership.json b/wp-content/themes/ccat/acf-json/group_post_profile.json
similarity index 98%
rename from wp-content/themes/ccat/acf-json/group_post_membership.json
rename to wp-content/themes/ccat/acf-json/group_post_profile.json
index c56eda1..68d3021 100644
--- a/wp-content/themes/ccat/acf-json/group_post_membership.json
+++ b/wp-content/themes/ccat/acf-json/group_post_profile.json
@@ -1,6 +1,6 @@
{
- "key": "group_post_membership",
- "title": "Post - Membership",
+ "key": "group_post_profile",
+ "title": "Post - Profile",
"fields": [
{
"key": "field_68c85464c2413",
@@ -525,8 +525,8 @@
},
{
"key": "field_6855b1f1c65bf",
- "label": "Membership type",
- "name": "membership_type",
+ "label": "Profile type",
+ "name": "profile_type",
"aria-label": "",
"type": "select",
"instructions": "",
@@ -555,7 +555,7 @@
"ui": 0,
"show_in_graphql": 1,
"graphql_description": "",
- "graphql_field_name": "membershipType",
+ "graphql_field_name": "profileType",
"graphql_non_null": 1,
"ajax": 0,
"placeholder": "",
@@ -707,7 +707,7 @@
{
"param": "post_type",
"operator": "==",
- "value": "membership"
+ "value": "profile"
}
]
],
@@ -726,7 +726,7 @@
"acfe_form": 0,
"acfe_display_title": "",
"show_in_graphql": 1,
- "graphql_field_name": "groupPostMembership",
+ "graphql_field_name": "groupPostProfile",
"map_graphql_types_from_location_rules": 0,
"graphql_types": "",
"acfe_meta": "",
diff --git a/wp-content/themes/ccat/app/components/nodes/TheListing.fragment.gql b/wp-content/themes/ccat/app/components/nodes/TheListing.fragment.gql
new file mode 100644
index 0000000..470656c
--- /dev/null
+++ b/wp-content/themes/ccat/app/components/nodes/TheListing.fragment.gql
@@ -0,0 +1,3 @@
+fragment TheListing on Listing {
+ title
+}
\ No newline at end of file
diff --git a/wp-content/themes/ccat/app/components/nodes/TheMembership.vue b/wp-content/themes/ccat/app/components/nodes/TheListing.vue
similarity index 58%
rename from wp-content/themes/ccat/app/components/nodes/TheMembership.vue
rename to wp-content/themes/ccat/app/components/nodes/TheListing.vue
index 5168294..25a3d3e 100644
--- a/wp-content/themes/ccat/app/components/nodes/TheMembership.vue
+++ b/wp-content/themes/ccat/app/components/nodes/TheListing.vue
@@ -1,7 +1,7 @@
diff --git a/wp-content/themes/ccat/app/components/nodes/TheMembership.fragment.gql b/wp-content/themes/ccat/app/components/nodes/TheMembership.fragment.gql
deleted file mode 100644
index 5581368..0000000
--- a/wp-content/themes/ccat/app/components/nodes/TheMembership.fragment.gql
+++ /dev/null
@@ -1,3 +0,0 @@
-fragment TheMembership on Membership {
- title
-}
\ No newline at end of file
diff --git a/wp-content/themes/ccat/app/components/nodes/TheProfile.fragment.gql b/wp-content/themes/ccat/app/components/nodes/TheProfile.fragment.gql
new file mode 100644
index 0000000..0021231
--- /dev/null
+++ b/wp-content/themes/ccat/app/components/nodes/TheProfile.fragment.gql
@@ -0,0 +1,3 @@
+fragment TheProfile on Profile {
+ title
+}
\ No newline at end of file
diff --git a/wp-content/themes/ccat/app/components/nodes/TheProfile.vue b/wp-content/themes/ccat/app/components/nodes/TheProfile.vue
new file mode 100644
index 0000000..45b6a1b
--- /dev/null
+++ b/wp-content/themes/ccat/app/components/nodes/TheProfile.vue
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
diff --git a/wp-content/themes/ccat/app/composables/useNodeByUri.ts b/wp-content/themes/ccat/app/composables/useNodeByUri.ts
index 41d545c..f2f7656 100644
--- a/wp-content/themes/ccat/app/composables/useNodeByUri.ts
+++ b/wp-content/themes/ccat/app/composables/useNodeByUri.ts
@@ -1,9 +1,10 @@
-import { ThePage, TheArticle, TheEvent, TheLocation, TheMembership, TheProject, TheResource } from "#components";
+import { ThePage, TheArticle, TheEvent, TheListing, TheLocation, TheProfile, TheProject, TheResource } from "#components";
const nodes = {
Event: TheEvent,
Location: TheLocation,
- Membership: TheMembership,
+ Listing: TheListing,
+ Profile: TheProfile,
Page: ThePage,
Post: TheArticle,
Project: TheProject,
diff --git a/wp-content/themes/ccat/app/graphql/nodeByUri.gql b/wp-content/themes/ccat/app/graphql/nodeByUri.gql
index 7c424df..fec25ec 100644
--- a/wp-content/themes/ccat/app/graphql/nodeByUri.gql
+++ b/wp-content/themes/ccat/app/graphql/nodeByUri.gql
@@ -18,8 +18,8 @@ query nodeByUri($uri: String!) {
... on Location {
...TheLocation
}
- ... on Membership {
- ...TheMembership
+ ... on Profile {
+ ...TheProfile
}
... on Project {
...TheProject
diff --git a/wp-content/themes/ccat/functions.php b/wp-content/themes/ccat/functions.php
index 0a2900f..d198fa0 100644
--- a/wp-content/themes/ccat/functions.php
+++ b/wp-content/themes/ccat/functions.php
@@ -6,11 +6,11 @@
require_once __DIR__ . '/includes/core/theme-setup.php';
// Custom Post Types
-require_once __DIR__ . '/includes/cpt/listing.php';
-require_once __DIR__ . '/includes/cpt/membership.php';
require_once __DIR__ . '/includes/cpt/contributor.php';
require_once __DIR__ . '/includes/cpt/event.php';
+require_once __DIR__ . '/includes/cpt/listing.php';
require_once __DIR__ . '/includes/cpt/location.php';
+require_once __DIR__ . '/includes/cpt/profile.php';
require_once __DIR__ . '/includes/cpt/project.php';
require_once __DIR__ . '/includes/cpt/representation.php';
require_once __DIR__ . '/includes/cpt/resource.php';
diff --git a/wp-content/themes/ccat/includes/cpt/listing.php b/wp-content/themes/ccat/includes/cpt/listing.php
index e06bb28..ebdd04f 100644
--- a/wp-content/themes/ccat/includes/cpt/listing.php
+++ b/wp-content/themes/ccat/includes/cpt/listing.php
@@ -54,8 +54,8 @@ function ccat_listing_register_post_type() {
'rest_base' => 'listing',
'rest_controller_class' => 'WP_REST_Posts_Controller',
'show_in_graphql' => true,
- 'graphql_single_name' => "Annonce",
- 'graphql_plural_name' => "Annonces",
+ 'graphql_single_name' => "Listing",
+ 'graphql_plural_name' => "Listings",
'graphql_interfaces' => array( 'Node' ),
)
);
diff --git a/wp-content/themes/ccat/includes/cpt/membership.php b/wp-content/themes/ccat/includes/cpt/membership.php
deleted file mode 100644
index 3661a0e..0000000
--- a/wp-content/themes/ccat/includes/cpt/membership.php
+++ /dev/null
@@ -1,89 +0,0 @@
- array(
- 'name' => __( "Memberships", 'ccat' ),
- 'menu_name' => __( "Memberships", 'ccat' ),
- 'singular_name' => __( "Membership", 'ccat' ),
- 'add_new' => __( "Add New", 'ccat' ),
- 'add_new_item' => __( "Add New Membership", 'ccat' ),
- 'new_item' => __( "New Membership", 'ccat' ),
- 'edit_item' => __( "Edit Membership", 'ccat' ),
- 'view_item' => __( "View Membership", 'ccat' ),
- 'view_items' => __( "View Memberships", 'ccat' ),
- 'search_items' => __( "Search Memberships", 'ccat' ),
- 'not_found' => __( "No Memberships found", 'ccat' ),
- 'not_found_in_trash' => __( "No Memberships found in trash", 'ccat' ),
- 'parent_item_colon' => __( "Parent Membership:", 'ccat' ),
- 'all_items' => __( "All Memberships", 'ccat' ),
- 'archives' => __( "Membership Archives", 'ccat' ),
- 'attributes' => __( "Membership Attributes", 'ccat' ),
- 'insert_into_item' => __( "Insert into Membership", 'ccat' ),
- 'uploaded_to_this_item' => __( "Uploaded to this Membership", 'ccat' ),
- 'featured_image' => __( "Featured Image", 'ccat' ),
- 'set_featured_image' => __( "Set featured image", 'ccat' ),
- 'remove_featured_image' => __( "Remove featured image", 'ccat' ),
- 'use_featured_image' => __( "Use as featured image", 'ccat' ),
- 'filter_items_list' => __( "Filter Memberships list", 'ccat' ),
- 'items_list_navigation' => __( "Memberships list navigation", 'ccat' ),
- 'items_list' => __( "Memberships list", 'ccat' ),
- 'item_published' => __( "Membership published.", 'ccat' ),
- 'item_published_privately' => __( "Membership published privately.", 'ccat' ),
- 'item_reverted_to_draft' => __( "Membership reverted to draft.", 'ccat' ),
- 'item_scheduled' => __( "Membership scheduled.", 'ccat' ),
- 'item_updated' => __( "Membership updated.", 'ccat' ),
- ),
- 'public' => true,
- 'hierarchical' => false,
- 'show_ui' => true,
- 'show_in_nav_menus' => false,
- 'supports' => array( 'title', 'thumbnail', 'author', 'revisions' ),
- 'has_archive' => false,
- 'rewrite' => array(
- 'slug' => 'membre',
- 'with_front' => false,
-
- ),
- 'query_var' => true,
- 'menu_icon' => 'dashicons-id',
- 'show_in_rest' => true,
- 'rest_base' => 'membership',
- 'rest_controller_class' => 'WP_REST_Posts_Controller',
- 'show_in_graphql' => true,
- 'graphql_single_name' => "Membership",
- 'graphql_plural_name' => "Memberships",
- 'graphql_interfaces' => array( 'Node' ),
- )
- );
-}
-
-// Custom 'membership' post updated messages
-add_filter( 'post_updated_messages', 'ccat_membership_post_updated_messages' );
-function ccat_membership_post_updated_messages( $messages ) {
- global $post;
- $permalink = get_permalink( $post );
- $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Membership", 'ccat' ) );
- $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Membership", 'ccat' ) );
- $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) );
- $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Membership", 'ccat' ) );
- $messages['membership'] = array(
- 0 => '',
- 1 => __( "Membership updated.", 'ccat' ) . $view_post_link_html,
- 2 => __( "Custom field updated.", 'ccat' ),
- 3 => __( "Custom field deleted.", 'ccat' ),
- 4 => __( "Membership updated.", 'ccat' ),
- 5 => isset( $_GET['revision'] ) ? sprintf( __( "Membership restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
- 6 => __( "Membership published.", 'ccat' ) . $view_post_link_html,
- 7 => __( "Membership saved.", 'ccat' ),
- 8 => __( "Membership submitted.", 'ccat' ) . $preview_post_link_html,
- 9 => sprintf( __( 'Membership scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html,
- 10 => __( 'Membership draft updated.' ) . $preview_post_link_html,
- );
-
- return $messages;
-}
diff --git a/wp-content/themes/ccat/includes/cpt/profile.php b/wp-content/themes/ccat/includes/cpt/profile.php
new file mode 100644
index 0000000..33e2ad0
--- /dev/null
+++ b/wp-content/themes/ccat/includes/cpt/profile.php
@@ -0,0 +1,89 @@
+ array(
+ 'name' => __( "Profiles", 'ccat' ),
+ 'menu_name' => __( "Profiles", 'ccat' ),
+ 'singular_name' => __( "Profile", 'ccat' ),
+ 'add_new' => __( "Add New", 'ccat' ),
+ 'add_new_item' => __( "Add New Profile", 'ccat' ),
+ 'new_item' => __( "New Profile", 'ccat' ),
+ 'edit_item' => __( "Edit Profile", 'ccat' ),
+ 'view_item' => __( "View Profile", 'ccat' ),
+ 'view_items' => __( "View Profiles", 'ccat' ),
+ 'search_items' => __( "Search Profiles", 'ccat' ),
+ 'not_found' => __( "No Profiles found", 'ccat' ),
+ 'not_found_in_trash' => __( "No Profiles found in trash", 'ccat' ),
+ 'parent_item_colon' => __( "Parent Profile:", 'ccat' ),
+ 'all_items' => __( "All Profiles", 'ccat' ),
+ 'archives' => __( "Profile Archives", 'ccat' ),
+ 'attributes' => __( "Profile Attributes", 'ccat' ),
+ 'insert_into_item' => __( "Insert into Profile", 'ccat' ),
+ 'uploaded_to_this_item' => __( "Uploaded to this Profile", 'ccat' ),
+ 'featured_image' => __( "Featured Image", 'ccat' ),
+ 'set_featured_image' => __( "Set featured image", 'ccat' ),
+ 'remove_featured_image' => __( "Remove featured image", 'ccat' ),
+ 'use_featured_image' => __( "Use as featured image", 'ccat' ),
+ 'filter_items_list' => __( "Filter Profiles list", 'ccat' ),
+ 'items_list_navigation' => __( "Profiles list navigation", 'ccat' ),
+ 'items_list' => __( "Profiles list", 'ccat' ),
+ 'item_published' => __( "Profile published.", 'ccat' ),
+ 'item_published_privately' => __( "Profile published privately.", 'ccat' ),
+ 'item_reverted_to_draft' => __( "Profile reverted to draft.", 'ccat' ),
+ 'item_scheduled' => __( "Profile scheduled.", 'ccat' ),
+ 'item_updated' => __( "Profile updated.", 'ccat' ),
+ ),
+ 'public' => true,
+ 'hierarchical' => false,
+ 'show_ui' => true,
+ 'show_in_nav_menus' => false,
+ 'supports' => array( 'title', 'thumbnail', 'author', 'revisions' ),
+ 'has_archive' => false,
+ 'rewrite' => array(
+ 'slug' => 'profil',
+ 'with_front' => false,
+
+ ),
+ 'query_var' => true,
+ 'menu_icon' => 'dashicons-id',
+ 'show_in_rest' => true,
+ 'rest_base' => 'profile',
+ 'rest_controller_class' => 'WP_REST_Posts_Controller',
+ 'show_in_graphql' => true,
+ 'graphql_single_name' => "Profile",
+ 'graphql_plural_name' => "Profiles",
+ 'graphql_interfaces' => array( 'Node' ),
+ )
+ );
+}
+
+// Custom 'profile' post updated messages
+add_filter( 'post_updated_messages', 'ccat_profile_post_updated_messages' );
+function ccat_profile_post_updated_messages( $messages ) {
+ global $post;
+ $permalink = get_permalink( $post );
+ $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Profile", 'ccat' ) );
+ $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Profile", 'ccat' ) );
+ $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) );
+ $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Profile", 'ccat' ) );
+ $messages['profile'] = array(
+ 0 => '',
+ 1 => __( "Profile updated.", 'ccat' ) . $view_post_link_html,
+ 2 => __( "Custom field updated.", 'ccat' ),
+ 3 => __( "Custom field deleted.", 'ccat' ),
+ 4 => __( "Profile updated.", 'ccat' ),
+ 5 => isset( $_GET['revision'] ) ? sprintf( __( "Profile restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
+ 6 => __( "Profile published.", 'ccat' ) . $view_post_link_html,
+ 7 => __( "Profile saved.", 'ccat' ),
+ 8 => __( "Profile submitted.", 'ccat' ) . $preview_post_link_html,
+ 9 => sprintf( __( 'Profile scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html,
+ 10 => __( 'Profile draft updated.' ) . $preview_post_link_html,
+ );
+
+ return $messages;
+}
diff --git a/wp-content/themes/ccat/languages/fr_CA.l10n.php b/wp-content/themes/ccat/languages/fr_CA.l10n.php
index f7ff9e8..c02e96d 100644
--- a/wp-content/themes/ccat/languages/fr_CA.l10n.php
+++ b/wp-content/themes/ccat/languages/fr_CA.l10n.php
@@ -1,3 +1,3 @@
'CCAT','report-msgid-bugs-to'=>'','pot-creation-date'=>'2025-05-26 14:47+0000','po-revision-date'=>'2025-09-24 19:52+0000','last-translator'=>'','language-team'=>'Français du Canada','language'=>'fr_CA','plural-forms'=>'nplurals=2; plural=n > 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.8.0; wp-6.8.2; php-8.2.28','x-domain'=>'ccat
-','messages'=>['← Back to disciplines'=>'← Retour aux disciplines','← Back to project-categories'=>'← Retour aux catégories de projet','← Back to resource-categories'=>'← Retour aux catégories de ressources','1024px container'=>'Conteneur 1024px','1280px container'=>'Conteneur 1280px','640px container'=>'Conteneur 640px','768px container'=>'Conteneur 768px','Abstract – Builder'=>'Abstrait – Constructeur','Abstract – Credits'=>'Abstrait – Crédits','Abstract – Entity'=>'Abstrait – Entité','Abstract – Gallery'=>'Abstrait – Galerie','Abstract – Offer'=>'Abstrait – Offre','Abstract – Social'=>'Abstrait – Social','Accented background'=>'Arrière-plan accentué','Add File'=>'Ajouter un fichier','Add New'=>'Ajouter','Add New Contributor'=>'Ajouter un contributeur','Add New Event'=>'Ajouter un événement','Add New Listing'=>'Ajouter une annonce','Add New Location'=>'Ajouter un lieu','Add New Membership'=>'Ajouter une nouvelle adhésion','Add New Project'=>'Ajouter un projet','Add New Representation'=>'Ajouter une représentation','Add New Resource'=>'Ajouter une ressource','Add New Template'=>'Ajouter un modèle','Add or remove disciplines'=>'Ajouter ou supprimer des disciplines','Add or remove project-categories'=>'Ajouter ou supprimer des catégories de projet','Add or remove resource-categories'=>'Ajouter ou supprimer des catégories de ressources','Address'=>'Adresse','Adultes (18+)'=>'Adultes (18+)','Ajouter un élément'=>'Ajouter un élément','All Contributors'=>'Tous les contributeurs','All disciplines'=>'Toutes les disciplines','All Events'=>'Tous les événements','All Listings'=>'Toutes les annonces','All Locations'=>'Tous les lieux','All Memberships'=>'Toutes les adhésions','All project-categories'=>'Toutes les catégories de projet','All Projects'=>'Tous les projets','All Representations'=>'Toutes les représentations','All resource-categories'=>'Toutes les catégories de ressources','All Resources'=>'Toutes les ressources','All Templates'=>'Tous les modèles','Alternative title(s)'=>'Titre(s) alternatif(s)','Attendance mode'=>'Mode de présence','Auteur'=>'Auteur','Background color'=>'Couleur d\'arrière-plan','Bar'=>'Bar','Billing'=>'Facturation','Billing is the same as contact'=>'Les informations de facturation sont les mêmes que pour le contact','Builder'=>'Constructeur','Cancelled'=>'Annulé','CCAT'=>'CCAT','Choose from the most used disciplines'=>'Choisir parmis les disciplines les plus utilisées','Choose from the most used project-categories'=>'Choisir parmi les catégories de projets les plus utilisées','Choose from the most used resource-categories'=>'Choisir parmi les catégories de ressources les plus utilisées','Collectif artistique'=>'Collectif artistique','Complete'=>'Complet','Compositeur'=>'Compositeur','Configuration'=>'Configuration','Configuration name'=>'Nom de la configuration','Confirmed'=>'Confirmé','Conseil de la culture de l\'Abitibi-Témiscamingue'=>'Conseil de la culture de l\'Abitibi-Témiscamingue','Contact'=>'Contact','Content'=>'Contenu','Content width'=>'Largeur du contenu','Contribution type(s)'=>'Type(s) de contribution','Contribution(s)'=>'Contribution(s)','Contributor'=>'Contributeur','Contributor Archives'=>'Archives des contributeurs','Contributor Attributes'=>'Attributs du contributeur','Contributor published privately.'=>'Le contributeur a publié de manière privée.','Contributor published.'=>'Contributeur publié.','Contributor restored to revision from %s'=>'Le contributeur a été restauré à la révision de %s','Contributor reverted to draft.'=>'Le contributeur a été ramené à l\'état de brouillon.','Contributor saved.'=>'Contributeur enregistré.','Contributor scheduled.'=>'Contributeur prévu.','Contributor submitted.'=>'Contributeur soumis.','Contributor type'=>'Type de configuration','Contributor updated.'=>'Contributeur mis à jour.','Contributors'=>'Contributeurs','Contributors list'=>'Liste des contributeurs','Contributors list navigation'=>'Liste des contributeurs et navigation','Credits'=>'Crédits','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','Date / time'=>'Date / heure','Date range'=>'Plage de dates','Day(s)'=>'Journée(s)','Default background'=>'Arrière-plan par défaut','Default container'=>'Conteneur par défaut','Description'=>'Description','Discipline'=>'Discipline','Discipline added.'=>'Discipline ajoutée.','Discipline deleted.'=>'Discipline supprimée.','Discipline not added.'=>'Discipline non ajoutée.','Discipline not updated.'=>'Discipline non mis à jour.','Discipline updated.'=>'Discipline mise à jour.','Discipline(s)'=>'Discipline(s)','Disciplines'=>'Disciplines','Disciplines deleted.'=>'Disciplines supprimées.','Disciplines list'=>'Liste des disciplines','Disciplines list navigation'=>'Liste de navigation des disciplines','Document type'=>'Type de document','Document(s)'=>'Document(s)','Edit Contributor'=>'Modifier le contributeur','Edit discipline'=>'Modifier la discipline','Edit Event'=>'Modifier l\'événement','Edit Listing'=>'Modifier l\'annonce','Edit Location'=>'Modifier le lieu','Edit Membership'=>'Modifier l\'adhésion','Edit Project'=>'Modifier le projet','Edit project-category'=>'Modifier la catégorie du projet','Edit Representation'=>'Représentation modifiée','Edit Resource'=>'Modifier la ressource','Edit resource-category'=>'Modifier la catégorie de ressources','Edit Template'=>'Modifier le modèle','Elevated background'=>'Arrière-plan élevé','Email'=>'Courriel','Email preferences'=>'Préférences courriel','End date'=>'Date de fin','End month'=>'Mois de fin','End time'=>'Heure de fin','Enfants'=>'Enfants','Entity'=>'Entité','Event'=>'Événement','Event Archives'=>'Archives d\'événements','Event Attributes'=>'Attributs de l\'événement','Event published privately.'=>'Événement publié en privé.','Event published.'=>'Événement publié.','Event restored to revision from %s'=>'Événement restauré à la révision de %s','Event reverted to draft.'=>'L\'événement a été remis en brouillon.','Event saved.'=>'Événement enregistré.','Event scheduled.'=>'Événement prévu.','Event submitted.'=>'Événement soumis.','Event type'=>'Type d\'événement','Event updated.'=>'Événement mis à jour.','Events'=>'Événements','Events list'=>'Liste des événements','Events list navigation'=>'Navigation de la liste des événements','Exposition'=>'Exposition','Failed'=>'Échec','Familial'=>'Familial','Featured Image'=>'Image en vedette','Festival'=>'Festival','File'=>'Fichier','Filter Contributors list'=>'Filtrer la liste des contributeurs','Filter Events list'=>'Filtrer la liste des événements','Filter Listings list'=>'Filtrer la liste des annonces','Filter Locations list'=>'Filtrer la liste des lieux','Filter Memberships list'=>'Filtrer la liste des adhésions','Filter Projects list'=>'Filtrer la liste des projets','Filter Representations list'=>'Liste des représentations de filtres','Filter Resources list'=>'Filtrer la liste des ressources','Filter Templates list'=>'Liste des modèles de filtres','Fluid container'=>'Conteneur fluide','Form'=>'Formulaire','Free'=>'Gratuit','Full-width container'=>'Conteneur pleine largeur','Gallery'=>'Galerie','H:i'=>'H:i','https://websimple.com/'=>'https://websimple.com/','Hybrid'=>'Hybride','Identifier(s)'=>'Identifiant(s)','Image'=>'Image','In-person'=>'En personne','Individu'=>'Individu','Individual day(s)'=>'Journée(s) individuelle(s)','Insert into Contributor'=>'Insérer dans le contributeur','Insert into Event'=>'Insérer dans l\'événement','Insert into Listing'=>'Insérer dans l\'annonce','Insert into Location'=>'Insérer dans le lieu','Insert into Membership'=>'Insérer dans l\'adhésion','Insert into Project'=>'Insérer dans le projet','Insert into Representation'=>'Insérer dans la représentation','Insert into Resource'=>'Insérer dans la ressource','Insert into Template'=>'Insérer dans le modèle','Institution'=>'Institution','Interprète'=>'Interprète','Is asynchronous'=>'Déroulement asynchrone','Language(s)'=>'Langue(s)','Listing'=>'Annonce','Listing Archives'=>'Archive des annonces','Listing Attributes'=>'Attributs de l\'annonce','Listing published privately.'=>'Annonce publiée en privé.','Listing published.'=>'Annoce publiée.','Listing restored to revision from %s'=>'Annonce restaurée à la révision de %s','Listing reverted to draft.'=>'L\'annonce a été ramenée à l\'état de brouillon.','Listing saved.'=>'Annonce sauvegardée.','Listing scheduled.'=>'Annonce prévue.','Listing submitted.'=>'Annonce soumise pour publication.','Listing updated.'=>'Annonce mise à jour.','Listings'=>'Annonces','Listings list'=>'Liste des annonces','Listings list navigation'=>'Navigation de la liste des annonces','Locality'=>'Lieu','Location'=>'Lieu','Location Archives'=>'Archives de lieux','Location Attributes'=>'Attributs de lieu','Location published privately.'=>'Lieu publié de manière privée.','Location published.'=>'Lieu publié.','Location restored to revision from %s'=>'Le lieu a été restauré à la révision de %s','Location reverted to draft.'=>'Le lieu a été remis en brouillon.','Location saved.'=>'Lieu enregistré.','Location scheduled.'=>'Lieu prévu.','Location submitted.'=>'Lieu soumis.','Location type'=>'Type de lieu','Location updated.'=>'Lieu mis à jour.','Locations'=>'Lieux','Locations list'=>'Liste des lieux','Locations list navigation'=>'Navigation de la liste des lieux','M j, Y @ H:i'=>'Je suis désolé, je ne comprends pas la signification de "M j, Y @ H:i". Pouvez-vous fournir plus de contexte ou une explication supplémentaire?','Media type'=>'Type de média','Media(s)'=>'Média(s)','Membership'=>'Adhésion','Membership Archives'=>'Archives de adhésions','Membership Attributes'=>'Attributs de l\'adhésion','Membership published privately.'=>'Adhésion publiée en privé.','Membership published.'=>'Adhésion publiée.','Membership restored to revision from %s'=>'Adhésion restaurée à la révision de %s','Membership reverted to draft.'=>'L\'adhésion a été ramenée à l\'état de brouillon.','Membership saved.'=>'Adhésion enregistrée.','Membership scheduled.'=>'Adhésion planifiée.','Membership submitted.'=>'Adhésion soumise.','Membership type'=>'Type d\'adhésion','Membership updated.'=>'Adhésion mise à jour.','Membership(s)'=>'Adhésion(s)','Memberships'=>'Adhésions','Memberships list'=>'Liste des adhésions','Memberships list navigation'=>'Liste de navigation des adhésions','Message'=>'Message','Minimum price'=>'Prix à partir de','Moral entity'=>'Entité morale','Most used'=>'Le plus utilisé','Multiple day(s)'=>'Journée(s) multiple(s)','Muted background'=>'Arrière-plan atténué','Name'=>'Nom','New Contributor'=>'Nouveau contributeur','New discipline'=>'Nouvelle discipline','New Event'=>'Nouvel événement','New Listing'=>'Nouvelle annonce','New Location'=>'Nouveau lieu','New Membership'=>'Nouvelle adhésion','New Project'=>'Nouveau projet','New project-category'=>'Nouvelle catégorie de projet','New Representation'=>'Nouvelle représentation','New Resource'=>'Nouvelle ressource','New resource-category'=>'Nouvelle catégorie de ressources','New Template'=>'Nouveau modèle','No Contributors found'=>'Aucun contributeur trouvé','No Contributors found in trash'=>'Aucun contributeur trouvé dans la corbeille','No disciplines'=>'Aucune discipline','No disciplines found.'=>'Aucune discipline trouvée.','No Events found'=>'Aucun événement trouvé','No Events found in trash'=>'Aucun événement trouvé dans la corbeille','No Listings found'=>'Aucune annonce trouvée','No Listings found in trash'=>'Aucune annonce dans la corbeille','No Locations found'=>'Aucun lieu trouvé','No Locations found in trash'=>'Aucun lieu trouvé dans la corbeille','No Memberships found'=>'Aucune adhésion trouvée','No Memberships found in trash'=>'Aucune adhésion trouvée dans la corbeille','No project-categories'=>'Aucune catégorie de projet','No project-categories found.'=>'Aucune catégorie de projet trouvée.','No Projects found'=>'Aucun projet trouvé','No Projects found in trash'=>'Aucun projet trouvé dans la corbeille','No Representations found'=>'Aucune représentation trouvée','No Representations found in trash'=>'Aucune représentation trouvée dans la corbeille','No resource-categories'=>'Aucune catégorie de ressources','No resource-categories found.'=>'Aucune catégorie de ressources trouvée.','No Resources found'=>'Aucune ressource trouvée','No Resources found in trash'=>'Aucune ressource trouvée dans la corbeille','No Templates found'=>'Aucun modèle trouvé','No Templates found in trash'=>'Aucun modèle trouvé dans la corbeille','Notification(s)'=>'Notification(s)','Offer'=>'Offre','Offer status'=>'État de l\'offre','Online'=>'En ligne','Options page – CCAT'=>'Page d\'options – CCAT','Organisation'=>'Organisation','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent Listing:'=>'Annonce parent:','Parent Location:'=>'Lieu parent :','Parent Membership:'=>'Adhésion parent :','Parent project-category'=>'Catégorie de projet parent','Parent project-category:'=>'Catégorie de projet parent :','Parent Project:'=>'Projet parent :','Parent Representation:'=>'Représentation des parents :','Parent resource-category'=>'Catégorie de ressources pour les parents','Parent resource-category:'=>'Catégorie de ressources parent :','Parent Resource:'=>'Ressource pour les parents :','Parent Template:'=>'Modèle parent :','Period'=>'Période','Person name'=>'Nom complet','Phone'=>'Téléphone','Physical person'=>'Personne physique','Planned'=>'Planifié','Popular disciplines'=>'Les disciplines populaires','Popular project-categories'=>'Catégories de projets populaires','Popular resource-categories'=>'Catégories de ressources populaires','Possible configuration(s)'=>'Configuration(s) possible(s)','Post – Article'=>'Contenu – Article','Post – Contributor'=>'Contenu – Contributeur','Post – Event'=>'Contenu – Événement','Post – Location'=>'Contenu – Lieu','Post – Membership'=>'Contenu - Adhésion','Post – Page'=>'Contenu – Page','Post – Project'=>'Contenu – Projet','Post – Representation'=>'Contenu – Représentation','Post – Resource'=>'Contenu – Ressource','Post – Template'=>'Contenu – Modèle','Postponed'=>'Reporté','Preview Contributor'=>'Prévisualiser le contributeur','Preview Event'=>'Prévisualiser l\'événement','Preview Listing'=>'Prévisualiser l\'annonce','Preview Location'=>'Prévisualiser le lieu','Preview Membership'=>'Prévisualiser l\'adhésion','Preview Project'=>'Prévisualiser le projet','Preview Representation'=>'Prévisualiser la représentation','Preview Resource'=>'Prévisualiser la ressource','Preview Template'=>'Prévisualiser le modèle','Pricing'=>'Tarification','Profile(s)'=>'Profil(s)','Project'=>'Projet','Project Archives'=>'Archives du projet','Project Attributes'=>'Attributs du projet','Project categorie(s)'=>'Catégorie(s) de projet','Project categories'=>'Catégories de projet','Project categories deleted.'=>'Catégories de projet supprimées.','Project categories list'=>'Liste des catégories de projets','Project categories list navigation'=>'Liste de catégories de projets pour la navigation','Project category'=>'Catégorie de projet','Project category added.'=>'Catégorie de projet ajoutée.','Project category deleted.'=>'Catégorie de projet supprimée.','Project category not added.'=>'Catégorie de projet non ajoutée.','Project category not updated.'=>'Catégorie de projet non mise à jour.','Project category updated.'=>'Catégorie de projet mise à jour.','Project published privately.'=>'Projet publié en privé.','Project published.'=>'Projet publié.','Project restored to revision from %s'=>'Projet restauré à la révision de %s','Project reverted to draft.'=>'Le projet a été ramené à l\'étape de brouillon.','Project saved.'=>'Projet enregistré.','Project scheduled.'=>'Projet planifié.','Project submitted.'=>'Projet soumis.','Project updated.'=>'Projet mis à jour.','Projects'=>'Projets','Projects list'=>'Liste de projets','Projects list navigation'=>'Navigation de la liste des projets','Range'=>'Plage de dates','Rechercher une adresse...'=>'Rechercher une adresse...','Registration'=>'Inscription','Remove featured image'=>'Retirer l\'image en vedette','Representation'=>'Représentation','Representation Archives'=>'Archives de représentation','Representation Attributes'=>'Attributs de représentation','Representation published privately.'=>'Représentation publiée en privé.','Representation published.'=>'Représentation publiée.','Representation restored to revision from %s'=>'Représentation restaurée à la révision de %s','Representation reverted to draft.'=>'La représentation a été ramenée à l\'état de brouillon.','Representation saved.'=>'Représentation enregistrée.','Representation scheduled.'=>'Représentation prévue.','Representation submitted.'=>'Représentation soumise.','Representation updated.'=>'Représentation mise à jour.','Representations'=>'Représentations','Representations list'=>'Liste des représentations','Representations list navigation'=>'Liste de navigation des représentations','Resource'=>'Ressource','Resource Archives'=>'Archives de ressources','Resource Attributes'=>'Attributs des ressources','Resource categories'=>'Catégories de ressources','Resource categories deleted.'=>'Catégories de ressources supprimées.','Resource categories list'=>'Liste des catégories de ressources','Resource categories list navigation'=>'Liste de navigation des catégories de ressources','Resource category'=>'Catégorie de ressources','Resource category added.'=>'Catégorie de ressources ajoutée.','Resource category deleted.'=>'Catégorie de ressources supprimée.','Resource category not added.'=>'Catégorie de ressources non ajoutée.','Resource category not updated.'=>'Catégorie de ressources non mise à jour.','Resource category updated.'=>'Catégorie de ressources mise à jour.','Resource published privately.'=>'Ressource publiée de façon privée.','Resource published.'=>'Ressource publiée.','Resource restored to revision from %s'=>'Ressource restaurée à la révision de %s','Resource reverted to draft.'=>'La ressource a été ramenée à l\'état de brouillon.','Resource saved.'=>'Ressource sauvegardée.','Resource scheduled.'=>'Ressource planifiée.','Resource submitted.'=>'Ressource soumise.','Resource updated.'=>'Ressource mise à jour.','Resources'=>'Ressources','Resources list'=>'Liste de ressources','Resources list navigation'=>'Liste de navigation des ressources','Salle de spectacle'=>'Salle de spectacle','Same as contact'=>'Même que contact','Schedule type'=>'Type d\'horaire','Search Contributors'=>'Recherche de contributeurs','Search disciplines'=>'Recherche de disciplines','Search Events'=>'Recherche d\'événements','Search for address...'=>'Rechercher une adresse...','Search Listings'=>'Rechercher des annonces','Search Locations'=>'Recherche de lieux','Search Memberships'=>'Recherche d\'adhésions','Search project-categories'=>'Recherche de catégories de projet','Search Projects'=>'Recherche de projets','Search Representations'=>'Représentations de recherche','Search resource-categories'=>'Recherche de catégories de ressources','Search Resources'=>'Recherche de ressources','Search Templates'=>'Modèles de recherche','Section – Container'=>'Section – Conteneur','Section – Theme'=>'Section – Thème','Section(s)'=>'Section(s)','Select'=>'Sélectionner','Sent'=>'Envoyé','Sent status'=>'État de l\'envoi','Separate disciplines with commas'=>'Séparez les disciplines avec des virgules.','Separate project-categories with commas'=>'Séparez les catégories de projets avec des virgules.','Separate resource-categories with commas'=>'Séparez les catégories de ressources avec des virgules.','Set featured image'=>'Définir l\'image en vedette','Social'=>'Social','Spectacle'=>'Spectacle','Start date'=>'Date de début','Start date / time'=>'Date et heure de début','Start month'=>'Mois de début','Subject'=>'Sujet','Target audience'=>'Public cible','Template'=>'Modèle','Template Archives'=>'Archives de modèle','Template Attributes'=>'Attributs de modèle','Template published privately.'=>'Modèle publié en privé.','Template published.'=>'Modèle publié.','Template restored to revision from %s'=>'Modèle restauré à la révision du %s','Template reverted to draft.'=>'Le modèle a été rétabli en brouillon.','Template saved.'=>'Modèle enregistré.','Template scheduled.'=>'Modèle programmé.','Template submitted.'=>'Modèle soumis.','Template updated.'=>'Modèle mis à jour.','Templates'=>'Modèles','Templates list'=>'Liste de modèles','Templates list navigation'=>'Liste de modèles de navigation','Term – Discipline'=>'Terme - Discipline','Text block'=>'Bloc de texte','This event is asynchronous'=>'Cet événement est asynchrone','This event is free'=>'Cet événement est gratuit','This event is wordless'=>'Cet événement est sans paroles','Title'=>'Titre','Tout public'=>'Tout public','Universal access'=>'Accès universel','Upcoming'=>'À venir','Update discipline'=>'Mettre à jour la discipline','Update project-category'=>'Mettre à jour la catégorie du projet','Update resource-category'=>'Mettre à jour la catégorie de ressources','Uploaded to this Contributor'=>'Téléchargé par ce contributeur','Uploaded to this Event'=>'Téléchargé à cet événement','Uploaded to this Listing'=>'Téléversé vers cette annonce','Uploaded to this Location'=>'Téléchargé à ce lieu','Uploaded to this Membership'=>'Téléchargé sur cette adhésion','Uploaded to this Project'=>'Téléchargé dans ce projet','Uploaded to this Representation'=>'Téléchargé sur cette représentation','Uploaded to this Resource'=>'Téléchargé dans cette ressource','Uploaded to this Template'=>'Téléchargé dans ce modèle','URI'=>'URI','URL'=>'URL','Use as featured image'=>'Utiliser comme image en vedette','User Profile'=>'Profil utilisateur','View Contributor'=>'Voir le contributeur','View Contributors'=>'Voir les contributeurs','View discipline'=>'Voir la discipline','View Event'=>'Voir l\'événement','View Events'=>'Voir les événements','View Listing'=>'Voir l\'annonce','View Listings'=>'Voir les annonces','View Location'=>'Voir le lieu','View Locations'=>'Voir les lieux','View Membership'=>'Afficher l\'adhésion','View Memberships'=>'Voir les adhésions','View Project'=>'Voir le projet','View project-category'=>'Voir la catégorie de projet','View Projects'=>'Voir les projets','View Representation'=>'Voir la représentation','View Representations'=>'Voir les représentations','View Resource'=>'Voir la ressource','View resource-category'=>'Voir la catégorie de ressources','View Resources'=>'Voir les ressources','View Template'=>'Voir le modèle','View Templates'=>'Voir les modèles','Virtual location'=>'Lieu virtuel','Websimple '=>'Websimple ','Where'=>'Lieu','Wordless'=>'Sans paroles','Y-m'=>'Y-m','Y-m-d'=>'Y-m-d','Y-m-d H:i:s'=>'Y-m-d H:i:s','YouTube URL'=>'URL YouTube','YouTube video'=>'Vidéo YouTube']];
+','messages'=>['← Back to disciplines'=>'← Retour aux disciplines','← Back to project-categories'=>'← Retour aux catégories de projet','← Back to resource-categories'=>'← Retour aux catégories de ressources','1024px container'=>'Conteneur 1024px','1280px container'=>'Conteneur 1280px','640px container'=>'Conteneur 640px','768px container'=>'Conteneur 768px','Abstract – Builder'=>'Abstrait – Constructeur','Abstract – Credits'=>'Abstrait – Crédits','Abstract – Entity'=>'Abstrait – Entité','Abstract – Gallery'=>'Abstrait – Galerie','Abstract – Offer'=>'Abstrait – Offre','Abstract – Social'=>'Abstrait – Social','Accented background'=>'Arrière-plan accentué','Add File'=>'Ajouter un fichier','Add New'=>'Ajouter','Add New Contributor'=>'Ajouter un contributeur','Add New Event'=>'Ajouter un événement','Add New Listing'=>'Ajouter une annonce','Add New Location'=>'Ajouter un lieu','Add New Profile'=>'Ajouter un nouveau profil','Add New Project'=>'Ajouter un projet','Add New Representation'=>'Ajouter une représentation','Add New Resource'=>'Ajouter une ressource','Add New Template'=>'Ajouter un modèle','Add or remove disciplines'=>'Ajouter ou supprimer des disciplines','Add or remove project-categories'=>'Ajouter ou supprimer des catégories de projet','Add or remove resource-categories'=>'Ajouter ou supprimer des catégories de ressources','Address'=>'Adresse','Adultes (18+)'=>'Adultes (18+)','Ajouter un élément'=>'Ajouter un élément','All Contributors'=>'Tous les contributeurs','All disciplines'=>'Toutes les disciplines','All Events'=>'Tous les événements','All Listings'=>'Toutes les annonces','All Locations'=>'Tous les lieux','All Profiles'=>'Tous les profils','All project-categories'=>'Toutes les catégories de projet','All Projects'=>'Tous les projets','All Representations'=>'Toutes les représentations','All resource-categories'=>'Toutes les catégories de ressources','All Resources'=>'Toutes les ressources','All Templates'=>'Tous les modèles','Alternative title(s)'=>'Titre(s) alternatif(s)','Attendance mode'=>'Mode de présence','Auteur'=>'Auteur','Background color'=>'Couleur d\'arrière-plan','Bar'=>'Bar','Billing'=>'Facturation','Billing is the same as contact'=>'Les informations de facturation sont les mêmes que pour le contact','Builder'=>'Constructeur','Cancelled'=>'Annulé','CCAT'=>'CCAT','Choose from the most used disciplines'=>'Choisir parmis les disciplines les plus utilisées','Choose from the most used project-categories'=>'Choisir parmi les catégories de projets les plus utilisées','Choose from the most used resource-categories'=>'Choisir parmi les catégories de ressources les plus utilisées','Collectif artistique'=>'Collectif artistique','Complete'=>'Complet','Compositeur'=>'Compositeur','Configuration'=>'Configuration','Configuration name'=>'Nom de la configuration','Confirmed'=>'Confirmé','Conseil de la culture de l\'Abitibi-Témiscamingue'=>'Conseil de la culture de l\'Abitibi-Témiscamingue','Contact'=>'Contact','Content'=>'Contenu','Content width'=>'Largeur du contenu','Contribution type(s)'=>'Type(s) de contribution','Contribution(s)'=>'Contribution(s)','Contributor'=>'Contributeur','Contributor Archives'=>'Archives des contributeurs','Contributor Attributes'=>'Attributs du contributeur','Contributor published privately.'=>'Le contributeur a publié de manière privée.','Contributor published.'=>'Contributeur publié.','Contributor restored to revision from %s'=>'Le contributeur a été restauré à la révision de %s','Contributor reverted to draft.'=>'Le contributeur a été ramené à l\'état de brouillon.','Contributor saved.'=>'Contributeur enregistré.','Contributor scheduled.'=>'Contributeur prévu.','Contributor submitted.'=>'Contributeur soumis.','Contributor type'=>'Type de configuration','Contributor updated.'=>'Contributeur mis à jour.','Contributors'=>'Contributeurs','Contributors list'=>'Liste des contributeurs','Contributors list navigation'=>'Liste des contributeurs et navigation','Credits'=>'Crédits','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','Date / time'=>'Date / heure','Date range'=>'Plage de dates','Day(s)'=>'Journée(s)','Default background'=>'Arrière-plan par défaut','Default container'=>'Conteneur par défaut','Description'=>'Description','Discipline'=>'Discipline','Discipline added.'=>'Discipline ajoutée.','Discipline deleted.'=>'Discipline supprimée.','Discipline not added.'=>'Discipline non ajoutée.','Discipline not updated.'=>'Discipline non mis à jour.','Discipline updated.'=>'Discipline mise à jour.','Discipline(s)'=>'Discipline(s)','Disciplines'=>'Disciplines','Disciplines deleted.'=>'Disciplines supprimées.','Disciplines list'=>'Liste des disciplines','Disciplines list navigation'=>'Liste de navigation des disciplines','Document type'=>'Type de document','Document(s)'=>'Document(s)','Edit Contributor'=>'Modifier le contributeur','Edit discipline'=>'Modifier la discipline','Edit Event'=>'Modifier l\'événement','Edit Listing'=>'Modifier l\'annonce','Edit Location'=>'Modifier le lieu','Edit Profile'=>'Modifier le profil','Edit Project'=>'Modifier le projet','Edit project-category'=>'Modifier la catégorie du projet','Edit Representation'=>'Représentation modifiée','Edit Resource'=>'Modifier la ressource','Edit resource-category'=>'Modifier la catégorie de ressources','Edit Template'=>'Modifier le modèle','Elevated background'=>'Arrière-plan élevé','Email'=>'Courriel','Email preferences'=>'Préférences courriel','End date'=>'Date de fin','End month'=>'Mois de fin','End time'=>'Heure de fin','Enfants'=>'Enfants','Entity'=>'Entité','Event'=>'Événement','Event Archives'=>'Archives d\'événements','Event Attributes'=>'Attributs de l\'événement','Event published privately.'=>'Événement publié en privé.','Event published.'=>'Événement publié.','Event restored to revision from %s'=>'Événement restauré à la révision de %s','Event reverted to draft.'=>'L\'événement a été remis en brouillon.','Event saved.'=>'Événement enregistré.','Event scheduled.'=>'Événement prévu.','Event submitted.'=>'Événement soumis.','Event type'=>'Type d\'événement','Event updated.'=>'Événement mis à jour.','Events'=>'Événements','Events list'=>'Liste des événements','Events list navigation'=>'Navigation de la liste des événements','Exposition'=>'Exposition','Failed'=>'Échec','Familial'=>'Familial','Featured Image'=>'Image en vedette','Festival'=>'Festival','File'=>'Fichier','Filter Contributors list'=>'Filtrer la liste des contributeurs','Filter Events list'=>'Filtrer la liste des événements','Filter Listings list'=>'Filtrer la liste des annonces','Filter Locations list'=>'Filtrer la liste des lieux','Filter Profiles list'=>'Filtrer la liste des profils','Filter Projects list'=>'Filtrer la liste des projets','Filter Representations list'=>'Liste des représentations de filtres','Filter Resources list'=>'Filtrer la liste des ressources','Filter Templates list'=>'Liste des modèles de filtres','Fluid container'=>'Conteneur fluide','Form'=>'Formulaire','Free'=>'Gratuit','Full-width container'=>'Conteneur pleine largeur','Gallery'=>'Galerie','H:i'=>'H:i','https://websimple.com/'=>'https://websimple.com/','Hybrid'=>'Hybride','Identifier(s)'=>'Identifiant(s)','Image'=>'Image','In-person'=>'En personne','Individu'=>'Individu','Individual day(s)'=>'Journée(s) individuelle(s)','Insert into Contributor'=>'Insérer dans le contributeur','Insert into Event'=>'Insérer dans l\'événement','Insert into Listing'=>'Insérer dans l\'annonce','Insert into Location'=>'Insérer dans le lieu','Insert into Profile'=>'Insérer dans le profil','Insert into Project'=>'Insérer dans le projet','Insert into Representation'=>'Insérer dans la représentation','Insert into Resource'=>'Insérer dans la ressource','Insert into Template'=>'Insérer dans le modèle','Institution'=>'Institution','Interprète'=>'Interprète','Is asynchronous'=>'Déroulement asynchrone','Language(s)'=>'Langue(s)','Listing'=>'Annonce','Listing Archives'=>'Archive des annonces','Listing Attributes'=>'Attributs de l\'annonce','Listing published privately.'=>'Annonce publiée en privé.','Listing published.'=>'Annoce publiée.','Listing restored to revision from %s'=>'Annonce restaurée à la révision de %s','Listing reverted to draft.'=>'L\'annonce a été ramenée à l\'état de brouillon.','Listing saved.'=>'Annonce sauvegardée.','Listing scheduled.'=>'Annonce prévue.','Listing submitted.'=>'Annonce soumise pour publication.','Listing updated.'=>'Annonce mise à jour.','Listings'=>'Annonces','Listings list'=>'Liste des annonces','Listings list navigation'=>'Navigation de la liste des annonces','Locality'=>'Lieu','Location'=>'Lieu','Location Archives'=>'Archives de lieux','Location Attributes'=>'Attributs de lieu','Location published privately.'=>'Lieu publié de manière privée.','Location published.'=>'Lieu publié.','Location restored to revision from %s'=>'Le lieu a été restauré à la révision de %s','Location reverted to draft.'=>'Le lieu a été remis en brouillon.','Location saved.'=>'Lieu enregistré.','Location scheduled.'=>'Lieu prévu.','Location submitted.'=>'Lieu soumis.','Location type'=>'Type de lieu','Location updated.'=>'Lieu mis à jour.','Locations'=>'Lieux','Locations list'=>'Liste des lieux','Locations list navigation'=>'Navigation de la liste des lieux','M j, Y @ H:i'=>'Je suis désolé, je ne comprends pas la signification de "M j, Y @ H:i". Pouvez-vous fournir plus de contexte ou une explication supplémentaire?','Media type'=>'Type de média','Media(s)'=>'Média(s)','Profile'=>'Profil','Profile Archives'=>'Archives de profils','Profile Attributes'=>'Attributs du profil','Profile published privately.'=>'Profil publié en privé.','Profile published.'=>'Profil publié.','Profile restored to revision from %s'=>'Profil restauré à la révision de %s','Profile reverted to draft.'=>'Le profil a été ramené à l\'état de brouillon.','Profile saved.'=>'Profil enregistré.','Profile scheduled.'=>'Profil planifié.','Profile submitted.'=>'Profil soumis.','Profile type'=>'Type de profil','Profile updated.'=>'Profil mis à jour.','Profile(s)'=>'Profil(s)','Profiles'=>'Profils','Profiles list'=>'Liste des profils','Profiles list navigation'=>'Liste de navigation des profils','Message'=>'Message','Minimum price'=>'Prix à partir de','Moral entity'=>'Entité morale','Most used'=>'Le plus utilisé','Multiple day(s)'=>'Journée(s) multiple(s)','Muted background'=>'Arrière-plan atténué','Name'=>'Nom','New Contributor'=>'Nouveau contributeur','New discipline'=>'Nouvelle discipline','New Event'=>'Nouvel événement','New Listing'=>'Nouvelle annonce','New Location'=>'Nouveau lieu','New Profile'=>'Nouveau profil','New Project'=>'Nouveau projet','New project-category'=>'Nouvelle catégorie de projet','New Representation'=>'Nouvelle représentation','New Resource'=>'Nouvelle ressource','New resource-category'=>'Nouvelle catégorie de ressources','New Template'=>'Nouveau modèle','No Contributors found'=>'Aucun contributeur trouvé','No Contributors found in trash'=>'Aucun contributeur trouvé dans la corbeille','No disciplines'=>'Aucune discipline','No disciplines found.'=>'Aucune discipline trouvée.','No Events found'=>'Aucun événement trouvé','No Events found in trash'=>'Aucun événement trouvé dans la corbeille','No Listings found'=>'Aucune annonce trouvée','No Listings found in trash'=>'Aucune annonce dans la corbeille','No Locations found'=>'Aucun lieu trouvé','No Locations found in trash'=>'Aucun lieu trouvé dans la corbeille','No Profiles found'=>'Aucun profil trouvé','No Profiles found in trash'=>'Aucun profil trouvé dans la corbeille','No project-categories'=>'Aucune catégorie de projet','No project-categories found.'=>'Aucune catégorie de projet trouvée.','No Projects found'=>'Aucun projet trouvé','No Projects found in trash'=>'Aucun projet trouvé dans la corbeille','No Representations found'=>'Aucune représentation trouvée','No Representations found in trash'=>'Aucune représentation trouvée dans la corbeille','No resource-categories'=>'Aucune catégorie de ressources','No resource-categories found.'=>'Aucune catégorie de ressources trouvée.','No Resources found'=>'Aucune ressource trouvée','No Resources found in trash'=>'Aucune ressource trouvée dans la corbeille','No Templates found'=>'Aucun modèle trouvé','No Templates found in trash'=>'Aucun modèle trouvé dans la corbeille','Notification(s)'=>'Notification(s)','Offer'=>'Offre','Offer status'=>'État de l\'offre','Online'=>'En ligne','Options page – CCAT'=>'Page d\'options – CCAT','Organisation'=>'Organisation','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent Listing:'=>'Annonce parent:','Parent Location:'=>'Lieu parent :','Parent Profile:'=>'Profil parent :','Parent project-category'=>'Catégorie de projet parent','Parent project-category:'=>'Catégorie de projet parent :','Parent Project:'=>'Projet parent :','Parent Representation:'=>'Représentation des parents :','Parent resource-category'=>'Catégorie de ressources pour les parents','Parent resource-category:'=>'Catégorie de ressources parent :','Parent Resource:'=>'Ressource pour les parents :','Parent Template:'=>'Modèle parent :','Period'=>'Période','Person name'=>'Nom complet','Phone'=>'Téléphone','Physical person'=>'Personne physique','Planned'=>'Planifié','Popular disciplines'=>'Les disciplines populaires','Popular project-categories'=>'Catégories de projets populaires','Popular resource-categories'=>'Catégories de ressources populaires','Possible configuration(s)'=>'Configuration(s) possible(s)','Post – Article'=>'Contenu – Article','Post – Contributor'=>'Contenu – Contributeur','Post – Event'=>'Contenu – Événement','Post – Location'=>'Contenu – Lieu','Post – Profile'=>'Contenu - Profil','Post – Page'=>'Contenu – Page','Post – Project'=>'Contenu – Projet','Post – Representation'=>'Contenu – Représentation','Post – Resource'=>'Contenu – Ressource','Post – Template'=>'Contenu – Modèle','Postponed'=>'Reporté','Preview Contributor'=>'Prévisualiser le contributeur','Preview Event'=>'Prévisualiser l\'événement','Preview Listing'=>'Prévisualiser l\'annonce','Preview Location'=>'Prévisualiser le lieu','Preview Profile'=>'Prévisualiser le profil','Preview Project'=>'Prévisualiser le projet','Preview Representation'=>'Prévisualiser la représentation','Preview Resource'=>'Prévisualiser la ressource','Preview Template'=>'Prévisualiser le modèle','Pricing'=>'Tarification','Profile(s)'=>'Profil(s)','Project'=>'Projet','Project Archives'=>'Archives du projet','Project Attributes'=>'Attributs du projet','Project categorie(s)'=>'Catégorie(s) de projet','Project categories'=>'Catégories de projet','Project categories deleted.'=>'Catégories de projet supprimées.','Project categories list'=>'Liste des catégories de projets','Project categories list navigation'=>'Liste de catégories de projets pour la navigation','Project category'=>'Catégorie de projet','Project category added.'=>'Catégorie de projet ajoutée.','Project category deleted.'=>'Catégorie de projet supprimée.','Project category not added.'=>'Catégorie de projet non ajoutée.','Project category not updated.'=>'Catégorie de projet non mise à jour.','Project category updated.'=>'Catégorie de projet mise à jour.','Project published privately.'=>'Projet publié en privé.','Project published.'=>'Projet publié.','Project restored to revision from %s'=>'Projet restauré à la révision de %s','Project reverted to draft.'=>'Le projet a été ramené à l\'étape de brouillon.','Project saved.'=>'Projet enregistré.','Project scheduled.'=>'Projet planifié.','Project submitted.'=>'Projet soumis.','Project updated.'=>'Projet mis à jour.','Projects'=>'Projets','Projects list'=>'Liste de projets','Projects list navigation'=>'Navigation de la liste des projets','Range'=>'Plage de dates','Rechercher une adresse...'=>'Rechercher une adresse...','Registration'=>'Inscription','Remove featured image'=>'Retirer l\'image en vedette','Representation'=>'Représentation','Representation Archives'=>'Archives de représentation','Representation Attributes'=>'Attributs de représentation','Representation published privately.'=>'Représentation publiée en privé.','Representation published.'=>'Représentation publiée.','Representation restored to revision from %s'=>'Représentation restaurée à la révision de %s','Representation reverted to draft.'=>'La représentation a été ramenée à l\'état de brouillon.','Representation saved.'=>'Représentation enregistrée.','Representation scheduled.'=>'Représentation prévue.','Representation submitted.'=>'Représentation soumise.','Representation updated.'=>'Représentation mise à jour.','Representations'=>'Représentations','Representations list'=>'Liste des représentations','Representations list navigation'=>'Liste de navigation des représentations','Resource'=>'Ressource','Resource Archives'=>'Archives de ressources','Resource Attributes'=>'Attributs des ressources','Resource categories'=>'Catégories de ressources','Resource categories deleted.'=>'Catégories de ressources supprimées.','Resource categories list'=>'Liste des catégories de ressources','Resource categories list navigation'=>'Liste de navigation des catégories de ressources','Resource category'=>'Catégorie de ressources','Resource category added.'=>'Catégorie de ressources ajoutée.','Resource category deleted.'=>'Catégorie de ressources supprimée.','Resource category not added.'=>'Catégorie de ressources non ajoutée.','Resource category not updated.'=>'Catégorie de ressources non mise à jour.','Resource category updated.'=>'Catégorie de ressources mise à jour.','Resource published privately.'=>'Ressource publiée de façon privée.','Resource published.'=>'Ressource publiée.','Resource restored to revision from %s'=>'Ressource restaurée à la révision de %s','Resource reverted to draft.'=>'La ressource a été ramenée à l\'état de brouillon.','Resource saved.'=>'Ressource sauvegardée.','Resource scheduled.'=>'Ressource planifiée.','Resource submitted.'=>'Ressource soumise.','Resource updated.'=>'Ressource mise à jour.','Resources'=>'Ressources','Resources list'=>'Liste de ressources','Resources list navigation'=>'Liste de navigation des ressources','Salle de spectacle'=>'Salle de spectacle','Same as contact'=>'Même que contact','Schedule type'=>'Type d\'horaire','Search Contributors'=>'Recherche de contributeurs','Search disciplines'=>'Recherche de disciplines','Search Events'=>'Recherche d\'événements','Search for address...'=>'Rechercher une adresse...','Search Listings'=>'Rechercher des annonces','Search Locations'=>'Recherche de lieux','Search Profiles'=>'Recherche de profils','Search project-categories'=>'Recherche de catégories de projet','Search Projects'=>'Recherche de projets','Search Representations'=>'Représentations de recherche','Search resource-categories'=>'Recherche de catégories de ressources','Search Resources'=>'Recherche de ressources','Search Templates'=>'Modèles de recherche','Section – Container'=>'Section – Conteneur','Section – Theme'=>'Section – Thème','Section(s)'=>'Section(s)','Select'=>'Sélectionner','Sent'=>'Envoyé','Sent status'=>'État de l\'envoi','Separate disciplines with commas'=>'Séparez les disciplines avec des virgules.','Separate project-categories with commas'=>'Séparez les catégories de projets avec des virgules.','Separate resource-categories with commas'=>'Séparez les catégories de ressources avec des virgules.','Set featured image'=>'Définir l\'image en vedette','Social'=>'Social','Spectacle'=>'Spectacle','Start date'=>'Date de début','Start date / time'=>'Date et heure de début','Start month'=>'Mois de début','Subject'=>'Sujet','Target audience'=>'Public cible','Template'=>'Modèle','Template Archives'=>'Archives de modèle','Template Attributes'=>'Attributs de modèle','Template published privately.'=>'Modèle publié en privé.','Template published.'=>'Modèle publié.','Template restored to revision from %s'=>'Modèle restauré à la révision du %s','Template reverted to draft.'=>'Le modèle a été rétabli en brouillon.','Template saved.'=>'Modèle enregistré.','Template scheduled.'=>'Modèle programmé.','Template submitted.'=>'Modèle soumis.','Template updated.'=>'Modèle mis à jour.','Templates'=>'Modèles','Templates list'=>'Liste de modèles','Templates list navigation'=>'Liste de modèles de navigation','Term – Discipline'=>'Terme - Discipline','Text block'=>'Bloc de texte','This event is asynchronous'=>'Cet événement est asynchrone','This event is free'=>'Cet événement est gratuit','This event is wordless'=>'Cet événement est sans paroles','Title'=>'Titre','Tout public'=>'Tout public','Universal access'=>'Accès universel','Upcoming'=>'À venir','Update discipline'=>'Mettre à jour la discipline','Update project-category'=>'Mettre à jour la catégorie du projet','Update resource-category'=>'Mettre à jour la catégorie de ressources','Uploaded to this Contributor'=>'Téléchargé par ce contributeur','Uploaded to this Event'=>'Téléchargé à cet événement','Uploaded to this Listing'=>'Téléversé vers cette annonce','Uploaded to this Location'=>'Téléchargé à ce lieu','Uploaded to this Profile'=>'Téléchargé sur ce profil','Uploaded to this Project'=>'Téléchargé dans ce projet','Uploaded to this Representation'=>'Téléchargé sur cette représentation','Uploaded to this Resource'=>'Téléchargé dans cette ressource','Uploaded to this Template'=>'Téléchargé dans ce modèle','URI'=>'URI','URL'=>'URL','Use as featured image'=>'Utiliser comme image en vedette','User Profile'=>'Profil utilisateur','View Contributor'=>'Voir le contributeur','View Contributors'=>'Voir les contributeurs','View discipline'=>'Voir la discipline','View Event'=>'Voir l\'événement','View Events'=>'Voir les événements','View Listing'=>'Voir l\'annonce','View Listings'=>'Voir les annonces','View Location'=>'Voir le lieu','View Locations'=>'Voir les lieux','View Profile'=>'Afficher le profil','View Profiles'=>'Voir les profils','View Project'=>'Voir le projet','View project-category'=>'Voir la catégorie de projet','View Projects'=>'Voir les projets','View Representation'=>'Voir la représentation','View Representations'=>'Voir les représentations','View Resource'=>'Voir la ressource','View resource-category'=>'Voir la catégorie de ressources','View Resources'=>'Voir les ressources','View Template'=>'Voir le modèle','View Templates'=>'Voir les modèles','Virtual location'=>'Lieu virtuel','Websimple '=>'Websimple ','Where'=>'Lieu','Wordless'=>'Sans paroles','Y-m'=>'Y-m','Y-m-d'=>'Y-m-d','Y-m-d H:i:s'=>'Y-m-d H:i:s','YouTube URL'=>'URL YouTube','YouTube video'=>'Vidéo YouTube']];
diff --git a/wp-content/themes/ccat/server/schema.graphql b/wp-content/themes/ccat/server/schema.graphql
index 9d801d7..feb3474 100644
--- a/wp-content/themes/ccat/server/schema.graphql
+++ b/wp-content/themes/ccat/server/schema.graphql
@@ -2260,10 +2260,10 @@ enum ContentTypeEnum {
EVENT
"""The Type of Content object"""
- LOCATION
+ LISTING
"""The Type of Content object"""
- MEMBERSHIP
+ LOCATION
"""The Type of Content object"""
PAGE
@@ -2271,6 +2271,9 @@ enum ContentTypeEnum {
"""The Type of Content object"""
POST
+ """The Type of Content object"""
+ PROFILE
+
"""The Type of Content object"""
PROJECT
@@ -3504,6 +3507,50 @@ type CreateEventPayload {
event: Event
}
+"""Input for the createListing mutation."""
+input CreateListingInput {
+ """The userId to assign as the author of the object"""
+ authorId: ID
+
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
+ """
+ date: String
+
+ """
+ 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 password used to protect the content of the object"""
+ password: String
+
+ """The slug of the object"""
+ slug: String
+
+ """The status of the object"""
+ status: PostStatusEnum
+
+ """The title of the object"""
+ title: String
+}
+
+"""The payload for the createListing mutation."""
+type CreateListingPayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The Post object mutation type."""
+ listing: Listing
+}
+
"""Input for the createLocation mutation."""
input CreateLocationInput {
"""
@@ -3612,50 +3659,6 @@ type CreateMediaItemPayload {
mediaItem: MediaItem
}
-"""Input for the createMembership mutation."""
-input CreateMembershipInput {
- """The userId to assign as the author of the object"""
- authorId: ID
-
- """
- This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """
- The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
- """
- date: String
-
- """
- 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 password used to protect the content of the object"""
- password: String
-
- """The slug of the object"""
- slug: String
-
- """The status of the object"""
- status: PostStatusEnum
-
- """The title of the object"""
- title: String
-}
-
-"""The payload for the createMembership mutation."""
-type CreateMembershipPayload {
- """
- If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """The Post object mutation type."""
- membership: Membership
-}
-
"""Input for the createPage mutation."""
input CreatePageInput {
"""The userId to assign as the author of the object"""
@@ -3798,6 +3801,50 @@ type CreatePostPayload {
post: Post
}
+"""Input for the createProfile mutation."""
+input CreateProfileInput {
+ """The userId to assign as the author of the object"""
+ authorId: ID
+
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
+ """
+ date: String
+
+ """
+ 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 password used to protect the content of the object"""
+ password: String
+
+ """The slug of the object"""
+ slug: String
+
+ """The status of the object"""
+ status: PostStatusEnum
+
+ """The title of the object"""
+ title: String
+}
+
+"""The payload for the createProfile mutation."""
+type CreateProfilePayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The Post object mutation type."""
+ profile: Profile
+}
+
"""Input for the createProjectCategory mutation."""
input CreateProjectCategoryInput {
"""The slug that the project_category will be an alias of"""
@@ -4371,6 +4418,39 @@ type DeleteEventPayload {
event: Event
}
+"""Input for the deleteListing mutation."""
+input DeleteListingInput {
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ Whether the object should be force deleted instead of being moved to the trash
+ """
+ forceDelete: Boolean
+
+ """The ID of the Listing to delete"""
+ id: ID!
+
+ """Override the edit lock when another user is editing the post"""
+ ignoreEditLock: Boolean
+}
+
+"""The payload for the deleteListing mutation."""
+type DeleteListingPayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The ID of the deleted object"""
+ deletedId: ID
+
+ """The object before it was deleted"""
+ listing: Listing
+}
+
"""Input for the deleteLocation mutation."""
input DeleteLocationInput {
"""
@@ -4434,39 +4514,6 @@ type DeleteMediaItemPayload {
mediaItem: MediaItem
}
-"""Input for the deleteMembership mutation."""
-input DeleteMembershipInput {
- """
- This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """
- Whether the object should be force deleted instead of being moved to the trash
- """
- forceDelete: Boolean
-
- """The ID of the Membership to delete"""
- id: ID!
-
- """Override the edit lock when another user is editing the post"""
- ignoreEditLock: Boolean
-}
-
-"""The payload for the deleteMembership mutation."""
-type DeleteMembershipPayload {
- """
- If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """The ID of the deleted object"""
- deletedId: ID
-
- """The object before it was deleted"""
- membership: Membership
-}
-
"""Input for the deletePage mutation."""
input DeletePageInput {
"""
@@ -4558,6 +4605,39 @@ type DeletePostPayload {
post: Post
}
+"""Input for the deleteProfile mutation."""
+input DeleteProfileInput {
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ Whether the object should be force deleted instead of being moved to the trash
+ """
+ forceDelete: Boolean
+
+ """The ID of the Profile to delete"""
+ id: ID!
+
+ """Override the edit lock when another user is editing the post"""
+ ignoreEditLock: Boolean
+}
+
+"""The payload for the deleteProfile mutation."""
+type DeleteProfilePayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The ID of the deleted object"""
+ deletedId: ID
+
+ """The object before it was deleted"""
+ profile: Profile
+}
+
"""Input for the deleteProjectCategory mutation."""
input DeleteProjectCategoryInput {
"""
@@ -7836,22 +7916,22 @@ type GroupPostMembership implements AcfFieldGroup & AcfFieldGroupFields & GroupP
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- billing: GroupPostMembershipBilling
+ billing: GroupPostProfileBilling
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- collectiveProfile: GroupPostMembershipCollectiveProfile
+ collectiveProfile: GroupPostProfileCollectiveProfile
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- contact: GroupPostMembershipContact
+ contact: GroupPostProfileContact
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- emailPreferences: GroupPostMembershipEmailPreferences!
+ emailPreferences: GroupPostProfileEmailPreferences!
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
@@ -7859,22 +7939,22 @@ type GroupPostMembership implements AcfFieldGroup & AcfFieldGroupFields & GroupP
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- individualProfile: GroupPostMembershipIndividualProfile
+ individualProfile: GroupPostProfileIndividualProfile
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- institutionProfile: GroupPostMembershipInstitutionProfile
+ institutionProfile: GroupPostProfileInstitutionProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
+ """
+ organizationProfile: GroupPostProfileOrganizationProfile
"""
Field of the "select" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- membershipType: [String]!
-
- """
- Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
- """
- organizationProfile: GroupPostMembershipOrganizationProfile
+ profileType: [String]!
"""
Field of the "true_false" Field Type added to the schema as part of the "GroupPostMembership" Field Group
@@ -7882,238 +7962,6 @@ type GroupPostMembership implements AcfFieldGroup & AcfFieldGroupFields & GroupP
sameAsContact: Boolean
}
-"""
-The "GroupPostMembershipBilling" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipBilling implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipBilling_Fields {
- """
- Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostMembershipBilling" Field Group
- """
- address: Address!
-
- """
- Field of the "email" Field Type added to the schema as part of the "GroupPostMembershipBilling" 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 "GroupPostMembershipBilling" Field Group
- """
- personName: String!
-
- """
- Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostMembershipBilling" Field Group
- """
- phone: String!
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipBilling" Field Group
-"""
-interface GroupPostMembershipBilling_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """
- Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostMembershipBilling" Field Group
- """
- address: Address!
-
- """
- Field of the "email" Field Type added to the schema as part of the "GroupPostMembershipBilling" 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 "GroupPostMembershipBilling" Field Group
- """
- personName: String!
-
- """
- Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostMembershipBilling" Field Group
- """
- phone: String!
-}
-
-"""
-The "GroupPostMembershipCollectiveProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipCollectiveProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipCollectiveProfile_Fields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipCollectiveProfile" Field Group
-"""
-interface GroupPostMembershipCollectiveProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-The "GroupPostMembershipContact" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipContact implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipContact_Fields {
- """
- Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostMembershipContact" Field Group
- """
- address: Address!
-
- """
- Field of the "email" Field Type added to the schema as part of the "GroupPostMembershipContact" 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 "GroupPostMembershipContact" Field Group
- """
- personName: String!
-
- """
- Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostMembershipContact" Field Group
- """
- phone: String!
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipContact" Field Group
-"""
-interface GroupPostMembershipContact_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """
- Field of the "acfe_address" Field Type added to the schema as part of the "GroupPostMembershipContact" Field Group
- """
- address: Address!
-
- """
- Field of the "email" Field Type added to the schema as part of the "GroupPostMembershipContact" 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 "GroupPostMembershipContact" Field Group
- """
- personName: String!
-
- """
- Field of the "acfe_phone_number" Field Type added to the schema as part of the "GroupPostMembershipContact" Field Group
- """
- phone: String!
-}
-
-"""
-The "GroupPostMembershipEmailPreferences" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipEmailPreferences implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipEmailPreferences_Fields {
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- categories: [String]
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- disciplines: [String]
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- eventTypes: [String]
-
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- mrc: [String]
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipEmailPreferences" Field Group
-"""
-interface GroupPostMembershipEmailPreferences_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- categories: [String]
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- disciplines: [String]
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- eventTypes: [String]
-
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-
- """
- Field of the "checkbox" Field Type added to the schema as part of the "GroupPostMembershipEmailPreferences" Field Group
- """
- mrc: [String]
-}
-
-"""
-The "GroupPostMembershipIndividualProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipIndividualProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipIndividualProfile_Fields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipIndividualProfile" Field Group
-"""
-interface GroupPostMembershipIndividualProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-The "GroupPostMembershipInstitutionProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipInstitutionProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipInstitutionProfile_Fields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipInstitutionProfile" Field Group
-"""
-interface GroupPostMembershipInstitutionProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-The "GroupPostMembershipOrganizationProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
-"""
-type GroupPostMembershipOrganizationProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostMembershipOrganizationProfile_Fields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
-"""
-Interface representing fields of the ACF "GroupPostMembershipOrganizationProfile" Field Group
-"""
-interface GroupPostMembershipOrganizationProfile_Fields implements AcfFieldGroup & AcfFieldGroupFields {
- """The name of the field group"""
- fieldGroupName: String @deprecated(reason: "Use __typename instead")
-}
-
"""
Interface representing fields of the ACF "GroupPostMembership" Field Group
"""
@@ -8121,22 +7969,22 @@ interface GroupPostMembership_Fields implements AcfFieldGroup & AcfFieldGroupFie
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- billing: GroupPostMembershipBilling
+ billing: GroupPostProfileBilling
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- collectiveProfile: GroupPostMembershipCollectiveProfile
+ collectiveProfile: GroupPostProfileCollectiveProfile
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- contact: GroupPostMembershipContact
+ contact: GroupPostProfileContact
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- emailPreferences: GroupPostMembershipEmailPreferences!
+ emailPreferences: GroupPostProfileEmailPreferences!
"""The name of the field group"""
fieldGroupName: String @deprecated(reason: "Use __typename instead")
@@ -8144,22 +7992,22 @@ interface GroupPostMembership_Fields implements AcfFieldGroup & AcfFieldGroupFie
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- individualProfile: GroupPostMembershipIndividualProfile
+ individualProfile: GroupPostProfileIndividualProfile
"""
Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- institutionProfile: GroupPostMembershipInstitutionProfile
+ institutionProfile: GroupPostProfileInstitutionProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
+ """
+ organizationProfile: GroupPostProfileOrganizationProfile
"""
Field of the "select" Field Type added to the schema as part of the "GroupPostMembership" Field Group
"""
- membershipType: [String]!
-
- """
- Field of the "group" Field Type added to the schema as part of the "GroupPostMembership" Field Group
- """
- organizationProfile: GroupPostMembershipOrganizationProfile
+ profileType: [String]!
"""
Field of the "true_false" Field Type added to the schema as part of the "GroupPostMembership" Field Group
@@ -8193,6 +8041,344 @@ interface GroupPostPage_Fields implements AcfFieldGroup & AcfFieldGroupFields &
sections: [GroupAbstractBuilderSections_Layout]
}
+"""
+The "GroupPostProfile" Field Group. Added to the Schema by "WPGraphQL for ACF".
+"""
+type GroupPostProfile implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfile_Fields {
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" 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
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ emailPreferences: GroupPostProfileEmailPreferences!
+
+ """The name of the field group"""
+ fieldGroupName: String @deprecated(reason: "Use __typename instead")
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ individualProfile: GroupPostProfileIndividualProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ institutionProfile: GroupPostProfileInstitutionProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ organizationProfile: GroupPostProfileOrganizationProfile
+
+ """
+ Field of the "select" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ profileType: [String]!
+
+ """
+ Field of the "true_false" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ 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".
+"""
+type GroupPostProfileEmailPreferences implements AcfFieldGroup & AcfFieldGroupFields & GroupPostProfileEmailPreferences_Fields {
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ categories: [String]
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ disciplines: [String]
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ eventTypes: [String]
+
+ """The name of the field group"""
+ fieldGroupName: String @deprecated(reason: "Use __typename instead")
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ mrc: [String]
+}
+
+"""
+Interface representing fields of the ACF "GroupPostProfileEmailPreferences" Field Group
+"""
+interface GroupPostProfileEmailPreferences_Fields implements AcfFieldGroup & AcfFieldGroupFields {
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ categories: [String]
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ disciplines: [String]
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ eventTypes: [String]
+
+ """The name of the field group"""
+ fieldGroupName: String @deprecated(reason: "Use __typename instead")
+
+ """
+ Field of the "checkbox" Field Type added to the schema as part of the "GroupPostProfileEmailPreferences" Field Group
+ """
+ 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 {
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" 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
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ emailPreferences: GroupPostProfileEmailPreferences!
+
+ """The name of the field group"""
+ fieldGroupName: String @deprecated(reason: "Use __typename instead")
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ individualProfile: GroupPostProfileIndividualProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ institutionProfile: GroupPostProfileInstitutionProfile
+
+ """
+ Field of the "group" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ organizationProfile: GroupPostProfileOrganizationProfile
+
+ """
+ Field of the "select" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ profileType: [String]!
+
+ """
+ Field of the "true_false" Field Type added to the schema as part of the "GroupPostProfile" Field Group
+ """
+ sameAsContact: Boolean
+}
+
"""
The "GroupPostProject" Field Group. Added to the Schema by "WPGraphQL for ACF".
"""
@@ -9311,6 +9497,461 @@ interface HierarchicalTermNode implements DatabaseIdentifier & HierarchicalNode
uri: String
}
+"""The Listing type"""
+type Listing implements ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable {
+ """The ancestors of the content node."""
+ ancestors(
+ """
+ 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
+ ): ListingToListingConnection @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+
+ """Connection between the NodeWithAuthor type and the User type"""
+ author: NodeWithAuthorToUserConnectionEdge
+
+ """The database identifier of the author of the node"""
+ authorDatabaseId: Int
+
+ """The globally unique identifier of the author of the node"""
+ authorId: ID
+
+ """Breadcrumb navigation items for this content"""
+ breadcrumbs: [BreadcrumbItem!]
+
+ """Connection between the ContentNode type and the ContentType type"""
+ contentType: ContentNodeToContentTypeConnectionEdge
+
+ """The name of the Content Type the node belongs to"""
+ contentTypeName: String!
+
+ """The unique identifier stored in the database"""
+ databaseId: Int!
+
+ """Post publishing date."""
+ date: String
+
+ """The publishing date set in GMT."""
+ dateGmt: String
+
+ """The desired slug of the post"""
+ desiredSlug: String
+
+ """
+ If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds
+ """
+ editingLockedBy: ContentNodeToEditLockConnectionEdge
+
+ """The RSS enclosure for the object"""
+ enclosure: String
+
+ """Connection between the ContentNode type and the EnqueuedScript type"""
+ enqueuedScripts(
+ """
+ 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
+ ): ContentNodeToEnqueuedScriptConnection
+
+ """
+ Connection between the ContentNode type and the EnqueuedStylesheet type
+ """
+ enqueuedStylesheets(
+ """
+ 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
+ ): ContentNodeToEnqueuedStylesheetConnection
+
+ """
+ The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table.
+ """
+ guid: String
+
+ """Whether the listing object is password protected."""
+ hasPassword: Boolean
+
+ """The globally unique identifier of the listing object."""
+ id: ID!
+
+ """Whether the node is a Comment"""
+ isComment: Boolean!
+
+ """Whether the node is a Content Node"""
+ isContentNode: Boolean!
+
+ """Whether the node represents the front page."""
+ isFrontPage: Boolean!
+
+ """Whether the node represents the blog page."""
+ isPostsPage: Boolean!
+
+ """Whether the object is a node in the preview state"""
+ isPreview: Boolean
+
+ """Whether the object is restricted from the current viewer"""
+ isRestricted: Boolean
+
+ """True if the node is a revision of another node"""
+ isRevision: Boolean
+
+ """Whether the node is a Term"""
+ isTermNode: Boolean!
+
+ """The user that most recently edited the node"""
+ lastEditedBy: ContentNodeToEditLastConnectionEdge
+
+ """The permalink of the post"""
+ link: String
+
+ """The id field matches the WP_Post->ID field."""
+ listingId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field")
+
+ """
+ The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time.
+ """
+ modified: String
+
+ """
+ The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT.
+ """
+ modifiedGmt: String
+
+ """The parent of the content node."""
+ parent: ListingToParentConnectionEdge @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
+
+ """The password for the listing object."""
+ password: String
+
+ """Connection between the Listing type and the Listing type"""
+ preview: ListingToPreviewConnectionEdge
+
+ """The database id of the preview node"""
+ previewRevisionDatabaseId: Int
+
+ """Whether the object is a node in the preview state"""
+ previewRevisionId: ID
+
+ """
+ If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node.
+ """
+ revisionOf: NodeWithRevisionsToContentNodeConnectionEdge
+
+ """Connection between the Listing type and the Listing type"""
+ revisions(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: ListingToRevisionConnectionWhereArgs
+ ): ListingToRevisionConnection
+
+ """
+ The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table.
+ """
+ slug: String
+
+ """The current status of the object"""
+ status: String
+
+ """The template assigned to the node"""
+ template: ContentTemplate
+
+ """
+ The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made.
+ """
+ title(
+ """Format of the field output"""
+ format: PostObjectFieldFormatEnum
+ ): String
+
+ """The unique resource identifier path"""
+ uri: String
+}
+
+"""
+A paginated collection of Listing Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Listing Nodes
+"""
+interface ListingConnection implements Connection {
+ """
+ A list of edges (relational context) between RootQuery and connected Listing Nodes
+ """
+ edges: [ListingConnectionEdge!]!
+
+ """A list of connected Listing Nodes"""
+ nodes: [Listing!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ListingConnectionPageInfo!
+}
+
+"""
+Represents a connection to a Listing. Contains both the Listing Node and metadata about the relationship.
+"""
+interface ListingConnectionEdge implements Edge {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The connected Listing Node"""
+ node: Listing!
+}
+
+"""
+Pagination metadata specific to "ListingConnectionEdge" collections. Provides cursors and flags for navigating through sets of "ListingConnectionEdge" Nodes.
+"""
+interface ListingConnectionPageInfo implements PageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""
+Identifier types for retrieving a specific Listing. Specifies which unique attribute is used to find an exact Listing.
+"""
+enum ListingIdType {
+ """Identify a resource by the Database ID."""
+ DATABASE_ID
+
+ """Identify a resource by the (hashed) Global ID."""
+ ID
+
+ """
+ Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier.
+ """
+ SLUG
+
+ """Identify a resource by the URI."""
+ URI
+}
+
+"""Connection between the Listing type and the Listing type"""
+type ListingToListingConnection implements Connection & ListingConnection {
+ """Edges for the ListingToListingConnection connection"""
+ edges: [ListingToListingConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Listing!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ListingToListingConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type ListingToListingConnectionEdge implements Edge & ListingConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+
+ """The item at the end of the edge"""
+ node: Listing! @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+}
+
+"""
+Pagination metadata specific to "ListingToListingConnection" collections. Provides cursors and flags for navigating through sets of ListingToListingConnection Nodes.
+"""
+type ListingToListingConnectionPageInfo implements ListingConnectionPageInfo & PageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Connection between the Listing type and the Listing type"""
+type ListingToParentConnectionEdge implements Edge & ListingConnectionEdge & OneToOneConnection {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The node of the connection, without the edges"""
+ node: Listing! @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
+}
+
+"""Connection between the Listing type and the Listing type"""
+type ListingToPreviewConnectionEdge implements Edge & ListingConnectionEdge & OneToOneConnection {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The node of the connection, without the edges"""
+ node: Listing!
+}
+
+"""Connection between the Listing type and the Listing type"""
+type ListingToRevisionConnection implements Connection & ListingConnection {
+ """Edges for the ListingToRevisionConnection connection"""
+ edges: [ListingToRevisionConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Listing!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ListingToRevisionConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type ListingToRevisionConnectionEdge implements Edge & ListingConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String
+
+ """The item at the end of the edge"""
+ node: Listing!
+}
+
+"""
+Pagination metadata specific to "ListingToRevisionConnection" collections. Provides cursors and flags for navigating through sets of ListingToRevisionConnection Nodes.
+"""
+type ListingToRevisionConnectionPageInfo implements ListingConnectionPageInfo & PageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Arguments for filtering the ListingToRevisionConnection connection"""
+input ListingToRevisionConnectionWhereArgs {
+ """
+ The user that's connected as the author of the object. Use the userId for the author object.
+ """
+ author: Int
+
+ """Find objects connected to author(s) in the array of author's userIds"""
+ authorIn: [ID]
+
+ """Find objects connected to the author by the author's nicename"""
+ authorName: String
+
+ """
+ Find objects NOT connected to author(s) in the array of author's userIds
+ """
+ authorNotIn: [ID]
+
+ """Filter the connection based on dates"""
+ dateQuery: DateQueryInput
+
+ """
+ True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
+ """
+ hasPassword: Boolean
+
+ """Specific database ID of the object"""
+ id: Int
+
+ """Array of IDs for the objects to retrieve"""
+ in: [ID]
+
+ """Get objects with a specific mimeType property"""
+ mimeType: MimeTypeEnum
+
+ """Slug / post_name of the object"""
+ name: String
+
+ """Specify objects to retrieve. Use slugs"""
+ nameIn: [String]
+
+ """
+ Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
+ """
+ notIn: [ID]
+
+ """What parameter to use to order the objects by."""
+ orderby: [PostObjectsConnectionOrderbyInput]
+
+ """Use ID to return only children. Use 0 to return only top-level items"""
+ parent: ID
+
+ """Specify objects whose parent is in an array"""
+ parentIn: [ID]
+
+ """Specify posts whose parent is not in an array"""
+ parentNotIn: [ID]
+
+ """Show posts with a specific password."""
+ password: String
+
+ """Show Posts based on a keyword search"""
+ search: String
+
+ """Retrieve posts where post status is in an array."""
+ stati: [PostStatusEnum]
+
+ """Show posts with a specific status."""
+ status: PostStatusEnum
+
+ """Title of the object"""
+ title: String
+}
+
"""The Location type"""
type Location implements ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostLocation {
"""
@@ -10275,477 +10916,6 @@ type MediaSize {
width: String
}
-"""The Membership type"""
-type Membership implements ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostMembership {
- """The ancestors of the content node."""
- ancestors(
- """
- 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
- ): MembershipToMembershipConnection @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
-
- """Connection between the NodeWithAuthor type and the User type"""
- author: NodeWithAuthorToUserConnectionEdge
-
- """The database identifier of the author of the node"""
- authorDatabaseId: Int
-
- """The globally unique identifier of the author of the node"""
- authorId: ID
-
- """Breadcrumb navigation items for this content"""
- breadcrumbs: [BreadcrumbItem!]
-
- """Connection between the ContentNode type and the ContentType type"""
- contentType: ContentNodeToContentTypeConnectionEdge
-
- """The name of the Content Type the node belongs to"""
- contentTypeName: String!
-
- """The unique identifier stored in the database"""
- databaseId: Int!
-
- """Post publishing date."""
- date: String
-
- """The publishing date set in GMT."""
- dateGmt: String
-
- """The desired slug of the post"""
- desiredSlug: String
-
- """
- If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds
- """
- editingLockedBy: ContentNodeToEditLockConnectionEdge
-
- """The RSS enclosure for the object"""
- enclosure: String
-
- """Connection between the ContentNode type and the EnqueuedScript type"""
- enqueuedScripts(
- """
- 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
- ): ContentNodeToEnqueuedScriptConnection
-
- """
- Connection between the ContentNode type and the EnqueuedStylesheet type
- """
- enqueuedStylesheets(
- """
- 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
- ): ContentNodeToEnqueuedStylesheetConnection
-
- """
- Connection between the NodeWithFeaturedImage type and the MediaItem type
- """
- featuredImage: NodeWithFeaturedImageToMediaItemConnectionEdge
-
- """
- The database identifier for the featured image node assigned to the content node
- """
- featuredImageDatabaseId: Int
-
- """Globally unique ID of the featured image assigned to the node"""
- featuredImageId: ID
-
- """Fields of the GroupPostMembership ACF Field Group"""
- groupPostMembership: GroupPostMembership
-
- """
- The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table.
- """
- guid: String
-
- """Whether the membership object is password protected."""
- hasPassword: Boolean
-
- """The globally unique identifier of the membership object."""
- id: ID!
-
- """Whether the node is a Comment"""
- isComment: Boolean!
-
- """Whether the node is a Content Node"""
- isContentNode: Boolean!
-
- """Whether the node represents the front page."""
- isFrontPage: Boolean!
-
- """Whether the node represents the blog page."""
- isPostsPage: Boolean!
-
- """Whether the object is a node in the preview state"""
- isPreview: Boolean
-
- """Whether the object is restricted from the current viewer"""
- isRestricted: Boolean
-
- """True if the node is a revision of another node"""
- isRevision: Boolean
-
- """Whether the node is a Term"""
- isTermNode: Boolean!
-
- """The user that most recently edited the node"""
- lastEditedBy: ContentNodeToEditLastConnectionEdge
-
- """The permalink of the post"""
- link: String
-
- """The id field matches the WP_Post->ID field."""
- membershipId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field")
-
- """
- The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time.
- """
- modified: String
-
- """
- The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT.
- """
- modifiedGmt: String
-
- """The parent of the content node."""
- parent: MembershipToParentConnectionEdge @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
-
- """The password for the membership object."""
- password: String
-
- """Connection between the Membership type and the Membership type"""
- preview: MembershipToPreviewConnectionEdge
-
- """The database id of the preview node"""
- previewRevisionDatabaseId: Int
-
- """Whether the object is a node in the preview state"""
- previewRevisionId: ID
-
- """
- If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node.
- """
- revisionOf: NodeWithRevisionsToContentNodeConnectionEdge
-
- """Connection between the Membership type and the Membership type"""
- revisions(
- """
- 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
-
- """Arguments for filtering the connection"""
- where: MembershipToRevisionConnectionWhereArgs
- ): MembershipToRevisionConnection
-
- """
- The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table.
- """
- slug: String
-
- """The current status of the object"""
- status: String
-
- """The template assigned to the node"""
- template: ContentTemplate
-
- """
- The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made.
- """
- title(
- """Format of the field output"""
- format: PostObjectFieldFormatEnum
- ): String
-
- """The unique resource identifier path"""
- uri: String
-}
-
-"""
-A paginated collection of Membership Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Membership Nodes
-"""
-interface MembershipConnection implements Connection {
- """
- A list of edges (relational context) between RootQuery and connected Membership Nodes
- """
- edges: [MembershipConnectionEdge!]!
-
- """A list of connected Membership Nodes"""
- nodes: [Membership!]!
-
- """Information about pagination in a connection."""
- pageInfo: MembershipConnectionPageInfo!
-}
-
-"""
-Represents a connection to a Membership. Contains both the Membership Node and metadata about the relationship.
-"""
-interface MembershipConnectionEdge implements Edge {
- """
- Opaque reference to the nodes position in the connection. Value can be used with pagination args.
- """
- cursor: String
-
- """The connected Membership Node"""
- node: Membership!
-}
-
-"""
-Pagination metadata specific to "MembershipConnectionEdge" collections. Provides cursors and flags for navigating through sets of "MembershipConnectionEdge" Nodes.
-"""
-interface MembershipConnectionPageInfo implements PageInfo & WPPageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
-
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
-
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
-
- """When paginating backwards, the cursor to continue."""
- startCursor: String
-}
-
-"""
-Identifier types for retrieving a specific Membership. Specifies which unique attribute is used to find an exact Membership.
-"""
-enum MembershipIdType {
- """Identify a resource by the Database ID."""
- DATABASE_ID
-
- """Identify a resource by the (hashed) Global ID."""
- ID
-
- """
- Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier.
- """
- SLUG
-
- """Identify a resource by the URI."""
- URI
-}
-
-"""Connection between the Membership type and the Membership type"""
-type MembershipToMembershipConnection implements Connection & MembershipConnection {
- """Edges for the MembershipToMembershipConnection connection"""
- edges: [MembershipToMembershipConnectionEdge!]!
-
- """The nodes of the connection, without the edges"""
- nodes: [Membership!]!
-
- """Information about pagination in a connection."""
- pageInfo: MembershipToMembershipConnectionPageInfo!
-}
-
-"""An edge in a connection"""
-type MembershipToMembershipConnectionEdge implements Edge & MembershipConnectionEdge {
- """A cursor for use in pagination"""
- cursor: String @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
-
- """The item at the end of the edge"""
- node: Membership! @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
-}
-
-"""
-Pagination metadata specific to "MembershipToMembershipConnection" collections. Provides cursors and flags for navigating through sets of MembershipToMembershipConnection Nodes.
-"""
-type MembershipToMembershipConnectionPageInfo implements MembershipConnectionPageInfo & PageInfo & WPPageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
-
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
-
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
-
- """When paginating backwards, the cursor to continue."""
- startCursor: String
-}
-
-"""Connection between the Membership type and the Membership type"""
-type MembershipToParentConnectionEdge implements Edge & MembershipConnectionEdge & OneToOneConnection {
- """
- Opaque reference to the nodes position in the connection. Value can be used with pagination args.
- """
- cursor: String
-
- """The node of the connection, without the edges"""
- node: Membership! @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
-}
-
-"""Connection between the Membership type and the Membership type"""
-type MembershipToPreviewConnectionEdge implements Edge & MembershipConnectionEdge & OneToOneConnection {
- """
- Opaque reference to the nodes position in the connection. Value can be used with pagination args.
- """
- cursor: String
-
- """The node of the connection, without the edges"""
- node: Membership!
-}
-
-"""Connection between the Membership type and the Membership type"""
-type MembershipToRevisionConnection implements Connection & MembershipConnection {
- """Edges for the MembershipToRevisionConnection connection"""
- edges: [MembershipToRevisionConnectionEdge!]!
-
- """The nodes of the connection, without the edges"""
- nodes: [Membership!]!
-
- """Information about pagination in a connection."""
- pageInfo: MembershipToRevisionConnectionPageInfo!
-}
-
-"""An edge in a connection"""
-type MembershipToRevisionConnectionEdge implements Edge & MembershipConnectionEdge {
- """A cursor for use in pagination"""
- cursor: String
-
- """The item at the end of the edge"""
- node: Membership!
-}
-
-"""
-Pagination metadata specific to "MembershipToRevisionConnection" collections. Provides cursors and flags for navigating through sets of MembershipToRevisionConnection Nodes.
-"""
-type MembershipToRevisionConnectionPageInfo implements MembershipConnectionPageInfo & PageInfo & WPPageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
-
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
-
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
-
- """When paginating backwards, the cursor to continue."""
- startCursor: String
-}
-
-"""Arguments for filtering the MembershipToRevisionConnection connection"""
-input MembershipToRevisionConnectionWhereArgs {
- """
- The user that's connected as the author of the object. Use the userId for the author object.
- """
- author: Int
-
- """Find objects connected to author(s) in the array of author's userIds"""
- authorIn: [ID]
-
- """Find objects connected to the author by the author's nicename"""
- authorName: String
-
- """
- Find objects NOT connected to author(s) in the array of author's userIds
- """
- authorNotIn: [ID]
-
- """Filter the connection based on dates"""
- dateQuery: DateQueryInput
-
- """
- True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
- """
- hasPassword: Boolean
-
- """Specific database ID of the object"""
- id: Int
-
- """Array of IDs for the objects to retrieve"""
- in: [ID]
-
- """Get objects with a specific mimeType property"""
- mimeType: MimeTypeEnum
-
- """Slug / post_name of the object"""
- name: String
-
- """Specify objects to retrieve. Use slugs"""
- nameIn: [String]
-
- """
- Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
- """
- notIn: [ID]
-
- """What parameter to use to order the objects by."""
- orderby: [PostObjectsConnectionOrderbyInput]
-
- """Use ID to return only children. Use 0 to return only top-level items"""
- parent: ID
-
- """Specify objects whose parent is in an array"""
- parentIn: [ID]
-
- """Specify posts whose parent is not in an array"""
- parentNotIn: [ID]
-
- """Show posts with a specific password."""
- password: String
-
- """Show Posts based on a keyword search"""
- search: String
-
- """Retrieve posts where post status is in an array."""
- stati: [PostStatusEnum]
-
- """Show posts with a specific status."""
- status: PostStatusEnum
-
- """Title of the object"""
- title: String
-}
-
"""
Collections of navigation links. Menus can be assigned to designated locations and used to build site navigation structures.
"""
@@ -14210,6 +14380,477 @@ interface Previewable {
previewRevisionId: ID
}
+"""The Profile type"""
+type Profile implements ContentNode & DatabaseIdentifier & Node & NodeWithAuthor & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostProfile {
+ """The ancestors of the content node."""
+ ancestors(
+ """
+ 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
+ ): ProfileToProfileConnection @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+
+ """Connection between the NodeWithAuthor type and the User type"""
+ author: NodeWithAuthorToUserConnectionEdge
+
+ """The database identifier of the author of the node"""
+ authorDatabaseId: Int
+
+ """The globally unique identifier of the author of the node"""
+ authorId: ID
+
+ """Breadcrumb navigation items for this content"""
+ breadcrumbs: [BreadcrumbItem!]
+
+ """Connection between the ContentNode type and the ContentType type"""
+ contentType: ContentNodeToContentTypeConnectionEdge
+
+ """The name of the Content Type the node belongs to"""
+ contentTypeName: String!
+
+ """The unique identifier stored in the database"""
+ databaseId: Int!
+
+ """Post publishing date."""
+ date: String
+
+ """The publishing date set in GMT."""
+ dateGmt: String
+
+ """The desired slug of the post"""
+ desiredSlug: String
+
+ """
+ If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds
+ """
+ editingLockedBy: ContentNodeToEditLockConnectionEdge
+
+ """The RSS enclosure for the object"""
+ enclosure: String
+
+ """Connection between the ContentNode type and the EnqueuedScript type"""
+ enqueuedScripts(
+ """
+ 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
+ ): ContentNodeToEnqueuedScriptConnection
+
+ """
+ Connection between the ContentNode type and the EnqueuedStylesheet type
+ """
+ enqueuedStylesheets(
+ """
+ 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
+ ): ContentNodeToEnqueuedStylesheetConnection
+
+ """
+ Connection between the NodeWithFeaturedImage type and the MediaItem type
+ """
+ featuredImage: NodeWithFeaturedImageToMediaItemConnectionEdge
+
+ """
+ The database identifier for the featured image node assigned to the content node
+ """
+ featuredImageDatabaseId: Int
+
+ """Globally unique ID of the featured image assigned to the node"""
+ featuredImageId: ID
+
+ """Fields of the GroupPostProfile ACF Field Group"""
+ groupPostProfile: GroupPostProfile
+
+ """
+ The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table.
+ """
+ guid: String
+
+ """Whether the profile object is password protected."""
+ hasPassword: Boolean
+
+ """The globally unique identifier of the profile object."""
+ id: ID!
+
+ """Whether the node is a Comment"""
+ isComment: Boolean!
+
+ """Whether the node is a Content Node"""
+ isContentNode: Boolean!
+
+ """Whether the node represents the front page."""
+ isFrontPage: Boolean!
+
+ """Whether the node represents the blog page."""
+ isPostsPage: Boolean!
+
+ """Whether the object is a node in the preview state"""
+ isPreview: Boolean
+
+ """Whether the object is restricted from the current viewer"""
+ isRestricted: Boolean
+
+ """True if the node is a revision of another node"""
+ isRevision: Boolean
+
+ """Whether the node is a Term"""
+ isTermNode: Boolean!
+
+ """The user that most recently edited the node"""
+ lastEditedBy: ContentNodeToEditLastConnectionEdge
+
+ """The permalink of the post"""
+ link: String
+
+ """
+ The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time.
+ """
+ modified: String
+
+ """
+ The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT.
+ """
+ modifiedGmt: String
+
+ """The parent of the content node."""
+ parent: ProfileToParentConnectionEdge @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
+
+ """The password for the profile object."""
+ password: String
+
+ """Connection between the Profile type and the Profile type"""
+ preview: ProfileToPreviewConnectionEdge
+
+ """The database id of the preview node"""
+ previewRevisionDatabaseId: Int
+
+ """Whether the object is a node in the preview state"""
+ previewRevisionId: ID
+
+ """The id field matches the WP_Post->ID field."""
+ profileId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field")
+
+ """
+ If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node.
+ """
+ revisionOf: NodeWithRevisionsToContentNodeConnectionEdge
+
+ """Connection between the Profile type and the Profile type"""
+ revisions(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: ProfileToRevisionConnectionWhereArgs
+ ): ProfileToRevisionConnection
+
+ """
+ The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table.
+ """
+ slug: String
+
+ """The current status of the object"""
+ status: String
+
+ """The template assigned to the node"""
+ template: ContentTemplate
+
+ """
+ The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made.
+ """
+ title(
+ """Format of the field output"""
+ format: PostObjectFieldFormatEnum
+ ): String
+
+ """The unique resource identifier path"""
+ uri: String
+}
+
+"""
+A paginated collection of Profile Nodes, Supports cursor-based pagination and filtering to efficiently retrieve sets of Profile Nodes
+"""
+interface ProfileConnection implements Connection {
+ """
+ A list of edges (relational context) between RootQuery and connected Profile Nodes
+ """
+ edges: [ProfileConnectionEdge!]!
+
+ """A list of connected Profile Nodes"""
+ nodes: [Profile!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ProfileConnectionPageInfo!
+}
+
+"""
+Represents a connection to a Profile. Contains both the Profile Node and metadata about the relationship.
+"""
+interface ProfileConnectionEdge implements Edge {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The connected Profile Node"""
+ node: Profile!
+}
+
+"""
+Pagination metadata specific to "ProfileConnectionEdge" collections. Provides cursors and flags for navigating through sets of "ProfileConnectionEdge" Nodes.
+"""
+interface ProfileConnectionPageInfo implements PageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""
+Identifier types for retrieving a specific Profile. Specifies which unique attribute is used to find an exact Profile.
+"""
+enum ProfileIdType {
+ """Identify a resource by the Database ID."""
+ DATABASE_ID
+
+ """Identify a resource by the (hashed) Global ID."""
+ ID
+
+ """
+ Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier.
+ """
+ SLUG
+
+ """Identify a resource by the URI."""
+ URI
+}
+
+"""Connection between the Profile type and the Profile type"""
+type ProfileToParentConnectionEdge implements Edge & OneToOneConnection & ProfileConnectionEdge {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The node of the connection, without the edges"""
+ node: Profile! @deprecated(reason: "This content type is not hierarchical and typically will not have a parent")
+}
+
+"""Connection between the Profile type and the Profile type"""
+type ProfileToPreviewConnectionEdge implements Edge & OneToOneConnection & ProfileConnectionEdge {
+ """
+ Opaque reference to the nodes position in the connection. Value can be used with pagination args.
+ """
+ cursor: String
+
+ """The node of the connection, without the edges"""
+ node: Profile!
+}
+
+"""Connection between the Profile type and the Profile type"""
+type ProfileToProfileConnection implements Connection & ProfileConnection {
+ """Edges for the ProfileToProfileConnection connection"""
+ edges: [ProfileToProfileConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Profile!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ProfileToProfileConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type ProfileToProfileConnectionEdge implements Edge & ProfileConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+
+ """The item at the end of the edge"""
+ node: Profile! @deprecated(reason: "This content type is not hierarchical and typically will not have ancestors")
+}
+
+"""
+Pagination metadata specific to "ProfileToProfileConnection" collections. Provides cursors and flags for navigating through sets of ProfileToProfileConnection Nodes.
+"""
+type ProfileToProfileConnectionPageInfo implements PageInfo & ProfileConnectionPageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Connection between the Profile type and the Profile type"""
+type ProfileToRevisionConnection implements Connection & ProfileConnection {
+ """Edges for the ProfileToRevisionConnection connection"""
+ edges: [ProfileToRevisionConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Profile!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: ProfileToRevisionConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type ProfileToRevisionConnectionEdge implements Edge & ProfileConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String
+
+ """The item at the end of the edge"""
+ node: Profile!
+}
+
+"""
+Pagination metadata specific to "ProfileToRevisionConnection" collections. Provides cursors and flags for navigating through sets of ProfileToRevisionConnection Nodes.
+"""
+type ProfileToRevisionConnectionPageInfo implements PageInfo & ProfileConnectionPageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Arguments for filtering the ProfileToRevisionConnection connection"""
+input ProfileToRevisionConnectionWhereArgs {
+ """
+ The user that's connected as the author of the object. Use the userId for the author object.
+ """
+ author: Int
+
+ """Find objects connected to author(s) in the array of author's userIds"""
+ authorIn: [ID]
+
+ """Find objects connected to the author by the author's nicename"""
+ authorName: String
+
+ """
+ Find objects NOT connected to author(s) in the array of author's userIds
+ """
+ authorNotIn: [ID]
+
+ """Filter the connection based on dates"""
+ dateQuery: DateQueryInput
+
+ """
+ True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
+ """
+ hasPassword: Boolean
+
+ """Specific database ID of the object"""
+ id: Int
+
+ """Array of IDs for the objects to retrieve"""
+ in: [ID]
+
+ """Get objects with a specific mimeType property"""
+ mimeType: MimeTypeEnum
+
+ """Slug / post_name of the object"""
+ name: String
+
+ """Specify objects to retrieve. Use slugs"""
+ nameIn: [String]
+
+ """
+ Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
+ """
+ notIn: [ID]
+
+ """What parameter to use to order the objects by."""
+ orderby: [PostObjectsConnectionOrderbyInput]
+
+ """Use ID to return only children. Use 0 to return only top-level items"""
+ parent: ID
+
+ """Specify objects whose parent is in an array"""
+ parentIn: [ID]
+
+ """Specify posts whose parent is not in an array"""
+ parentNotIn: [ID]
+
+ """Show posts with a specific password."""
+ password: String
+
+ """Show Posts based on a keyword search"""
+ search: String
+
+ """Retrieve posts where post status is in an array."""
+ stati: [PostStatusEnum]
+
+ """Show posts with a specific status."""
+ status: PostStatusEnum
+
+ """Title of the object"""
+ title: String
+}
+
"""The Project type"""
type Project implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfGroupPostProject {
"""The ancestors of the content node."""
@@ -17269,6 +17910,12 @@ type RootMutation {
input: CreateEventInput!
): CreateEventPayload
+ """The createListing mutation"""
+ createListing(
+ """Input for the createListing mutation"""
+ input: CreateListingInput!
+ ): CreateListingPayload
+
"""The createLocation mutation"""
createLocation(
"""Input for the createLocation mutation"""
@@ -17281,12 +17928,6 @@ type RootMutation {
input: CreateMediaItemInput!
): CreateMediaItemPayload
- """The createMembership mutation"""
- createMembership(
- """Input for the createMembership mutation"""
- input: CreateMembershipInput!
- ): CreateMembershipPayload
-
"""The createPage mutation"""
createPage(
"""Input for the createPage mutation"""
@@ -17305,6 +17946,12 @@ type RootMutation {
input: CreatePostFormatInput!
): CreatePostFormatPayload
+ """The createProfile mutation"""
+ createProfile(
+ """Input for the createProfile mutation"""
+ input: CreateProfileInput!
+ ): CreateProfilePayload
+
"""The createProject mutation"""
createProject(
"""Input for the createProject mutation"""
@@ -17383,6 +18030,12 @@ type RootMutation {
input: DeleteEventInput!
): DeleteEventPayload
+ """The deleteListing mutation"""
+ deleteListing(
+ """Input for the deleteListing mutation"""
+ input: DeleteListingInput!
+ ): DeleteListingPayload
+
"""The deleteLocation mutation"""
deleteLocation(
"""Input for the deleteLocation mutation"""
@@ -17395,12 +18048,6 @@ type RootMutation {
input: DeleteMediaItemInput!
): DeleteMediaItemPayload
- """The deleteMembership mutation"""
- deleteMembership(
- """Input for the deleteMembership mutation"""
- input: DeleteMembershipInput!
- ): DeleteMembershipPayload
-
"""The deletePage mutation"""
deletePage(
"""Input for the deletePage mutation"""
@@ -17419,6 +18066,12 @@ type RootMutation {
input: DeletePostFormatInput!
): DeletePostFormatPayload
+ """The deleteProfile mutation"""
+ deleteProfile(
+ """Input for the deleteProfile mutation"""
+ input: DeleteProfileInput!
+ ): DeleteProfilePayload
+
"""The deleteProject mutation"""
deleteProject(
"""Input for the deleteProject mutation"""
@@ -17545,6 +18198,12 @@ type RootMutation {
input: UpdateEventInput!
): UpdateEventPayload
+ """The updateListing mutation"""
+ updateListing(
+ """Input for the updateListing mutation"""
+ input: UpdateListingInput!
+ ): UpdateListingPayload
+
"""The updateLocation mutation"""
updateLocation(
"""Input for the updateLocation mutation"""
@@ -17557,12 +18216,6 @@ type RootMutation {
input: UpdateMediaItemInput!
): UpdateMediaItemPayload
- """The updateMembership mutation"""
- updateMembership(
- """Input for the updateMembership mutation"""
- input: UpdateMembershipInput!
- ): UpdateMembershipPayload
-
"""The updatePage mutation"""
updatePage(
"""Input for the updatePage mutation"""
@@ -17581,6 +18234,12 @@ type RootMutation {
input: UpdatePostFormatInput!
): UpdatePostFormatPayload
+ """The updateProfile mutation"""
+ updateProfile(
+ """Input for the updateProfile mutation"""
+ input: UpdateProfileInput!
+ ): UpdateProfilePayload
+
"""The updateProject mutation"""
updateProject(
"""Input for the updateProject mutation"""
@@ -17909,6 +18568,59 @@ type RootQuery implements WithAcfOptionsPageSiteOptions {
"""Fields of the 'GeneralSettings' settings group"""
generalSettings: GeneralSettings
+ """An object of the Listing Type. """
+ listing(
+ """
+ Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the "asPreview" argument is not explicitly provided as an argument.
+ """
+ asPreview: Boolean
+
+ """The globally unique identifier of the object."""
+ id: ID!
+
+ """Type of unique identifier to fetch by. Default is Global ID"""
+ idType: ListingIdType
+ ): Listing
+
+ """A Listing object"""
+ listingBy(
+ """Get the Listing object by its global ID"""
+ id: ID
+
+ """Get the Listing by its database ID"""
+ listingId: Int
+
+ """
+ Get the Listing by its slug (only available for non-hierarchical types)
+ """
+ slug: String
+
+ """Get the Listing by its uri"""
+ uri: String
+ ): Listing @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")")
+
+ """Connection between the RootQuery type and the Listing type"""
+ listings(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: RootQueryToListingConnectionWhereArgs
+ ): RootQueryToListingConnection
+
"""An object of the Location Type. """
location(
"""
@@ -18010,59 +18722,6 @@ type RootQuery implements WithAcfOptionsPageSiteOptions {
where: RootQueryToMediaItemConnectionWhereArgs
): RootQueryToMediaItemConnection
- """An object of the Membership Type. """
- membership(
- """
- Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the "asPreview" argument is not explicitly provided as an argument.
- """
- asPreview: Boolean
-
- """The globally unique identifier of the object."""
- id: ID!
-
- """Type of unique identifier to fetch by. Default is Global ID"""
- idType: MembershipIdType
- ): Membership
-
- """A Membership object"""
- membershipBy(
- """Get the Membership object by its global ID"""
- id: ID
-
- """Get the Membership by its database ID"""
- membershipId: Int
-
- """
- Get the Membership by its slug (only available for non-hierarchical types)
- """
- slug: String
-
- """Get the Membership by its uri"""
- uri: String
- ): Membership @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")")
-
- """Connection between the RootQuery type and the Membership type"""
- memberships(
- """
- 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
-
- """Arguments for filtering the connection"""
- where: RootQueryToMembershipConnectionWhereArgs
- ): RootQueryToMembershipConnection
-
"""A WordPress navigation menu"""
menu(
"""The globally unique identifier of the menu."""
@@ -18299,6 +18958,59 @@ type RootQuery implements WithAcfOptionsPageSiteOptions {
where: RootQueryToPostConnectionWhereArgs
): RootQueryToPostConnection
+ """An object of the Profile Type. """
+ profile(
+ """
+ Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the "asPreview" argument is not explicitly provided as an argument.
+ """
+ asPreview: Boolean
+
+ """The globally unique identifier of the object."""
+ id: ID!
+
+ """Type of unique identifier to fetch by. Default is Global ID"""
+ idType: ProfileIdType
+ ): Profile
+
+ """A Profile object"""
+ profileBy(
+ """Get the Profile object by its global ID"""
+ id: ID
+
+ """Get the Profile by its database ID"""
+ profileId: Int
+
+ """
+ Get the Profile by its slug (only available for non-hierarchical types)
+ """
+ slug: String
+
+ """Get the Profile by its uri"""
+ uri: String
+ ): Profile @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")")
+
+ """Connection between the RootQuery type and the Profile type"""
+ profiles(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: RootQueryToProfileConnectionWhereArgs
+ ): RootQueryToProfileConnection
+
"""An object of the Project Type. """
project(
"""
@@ -19631,6 +20343,118 @@ input RootQueryToEventConnectionWhereArgs {
title: String
}
+"""Connection between the RootQuery type and the Listing type"""
+type RootQueryToListingConnection implements Connection & ListingConnection {
+ """Edges for the RootQueryToListingConnection connection"""
+ edges: [RootQueryToListingConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Listing!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: RootQueryToListingConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type RootQueryToListingConnectionEdge implements Edge & ListingConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String
+
+ """The item at the end of the edge"""
+ node: Listing!
+}
+
+"""
+Pagination metadata specific to "RootQueryToListingConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToListingConnection Nodes.
+"""
+type RootQueryToListingConnectionPageInfo implements ListingConnectionPageInfo & PageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Arguments for filtering the RootQueryToListingConnection connection"""
+input RootQueryToListingConnectionWhereArgs {
+ """
+ The user that's connected as the author of the object. Use the userId for the author object.
+ """
+ author: Int
+
+ """Find objects connected to author(s) in the array of author's userIds"""
+ authorIn: [ID]
+
+ """Find objects connected to the author by the author's nicename"""
+ authorName: String
+
+ """
+ Find objects NOT connected to author(s) in the array of author's userIds
+ """
+ authorNotIn: [ID]
+
+ """Filter the connection based on dates"""
+ dateQuery: DateQueryInput
+
+ """
+ True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
+ """
+ hasPassword: Boolean
+
+ """Specific database ID of the object"""
+ id: Int
+
+ """Array of IDs for the objects to retrieve"""
+ in: [ID]
+
+ """Get objects with a specific mimeType property"""
+ mimeType: MimeTypeEnum
+
+ """Slug / post_name of the object"""
+ name: String
+
+ """Specify objects to retrieve. Use slugs"""
+ nameIn: [String]
+
+ """
+ Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
+ """
+ notIn: [ID]
+
+ """What parameter to use to order the objects by."""
+ orderby: [PostObjectsConnectionOrderbyInput]
+
+ """Use ID to return only children. Use 0 to return only top-level items"""
+ parent: ID
+
+ """Specify objects whose parent is in an array"""
+ parentIn: [ID]
+
+ """Specify posts whose parent is not in an array"""
+ parentNotIn: [ID]
+
+ """Show posts with a specific password."""
+ password: String
+
+ """Show Posts based on a keyword search"""
+ search: String
+
+ """Retrieve posts where post status is in an array."""
+ stati: [PostStatusEnum]
+
+ """Show posts with a specific status."""
+ status: PostStatusEnum
+
+ """Title of the object"""
+ title: String
+}
+
"""Connection between the RootQuery type and the Location type"""
type RootQueryToLocationConnection implements Connection & LocationConnection {
"""Edges for the RootQueryToLocationConnection connection"""
@@ -19839,118 +20663,6 @@ input RootQueryToMediaItemConnectionWhereArgs {
title: String
}
-"""Connection between the RootQuery type and the Membership type"""
-type RootQueryToMembershipConnection implements Connection & MembershipConnection {
- """Edges for the RootQueryToMembershipConnection connection"""
- edges: [RootQueryToMembershipConnectionEdge!]!
-
- """The nodes of the connection, without the edges"""
- nodes: [Membership!]!
-
- """Information about pagination in a connection."""
- pageInfo: RootQueryToMembershipConnectionPageInfo!
-}
-
-"""An edge in a connection"""
-type RootQueryToMembershipConnectionEdge implements Edge & MembershipConnectionEdge {
- """A cursor for use in pagination"""
- cursor: String
-
- """The item at the end of the edge"""
- node: Membership!
-}
-
-"""
-Pagination metadata specific to "RootQueryToMembershipConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToMembershipConnection Nodes.
-"""
-type RootQueryToMembershipConnectionPageInfo implements MembershipConnectionPageInfo & PageInfo & WPPageInfo {
- """When paginating forwards, the cursor to continue."""
- endCursor: String
-
- """When paginating forwards, are there more items?"""
- hasNextPage: Boolean!
-
- """When paginating backwards, are there more items?"""
- hasPreviousPage: Boolean!
-
- """When paginating backwards, the cursor to continue."""
- startCursor: String
-}
-
-"""Arguments for filtering the RootQueryToMembershipConnection connection"""
-input RootQueryToMembershipConnectionWhereArgs {
- """
- The user that's connected as the author of the object. Use the userId for the author object.
- """
- author: Int
-
- """Find objects connected to author(s) in the array of author's userIds"""
- authorIn: [ID]
-
- """Find objects connected to the author by the author's nicename"""
- authorName: String
-
- """
- Find objects NOT connected to author(s) in the array of author's userIds
- """
- authorNotIn: [ID]
-
- """Filter the connection based on dates"""
- dateQuery: DateQueryInput
-
- """
- True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
- """
- hasPassword: Boolean
-
- """Specific database ID of the object"""
- id: Int
-
- """Array of IDs for the objects to retrieve"""
- in: [ID]
-
- """Get objects with a specific mimeType property"""
- mimeType: MimeTypeEnum
-
- """Slug / post_name of the object"""
- name: String
-
- """Specify objects to retrieve. Use slugs"""
- nameIn: [String]
-
- """
- Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
- """
- notIn: [ID]
-
- """What parameter to use to order the objects by."""
- orderby: [PostObjectsConnectionOrderbyInput]
-
- """Use ID to return only children. Use 0 to return only top-level items"""
- parent: ID
-
- """Specify objects whose parent is in an array"""
- parentIn: [ID]
-
- """Specify posts whose parent is not in an array"""
- parentNotIn: [ID]
-
- """Show posts with a specific password."""
- password: String
-
- """Show Posts based on a keyword search"""
- search: String
-
- """Retrieve posts where post status is in an array."""
- stati: [PostStatusEnum]
-
- """Show posts with a specific status."""
- status: PostStatusEnum
-
- """Title of the object"""
- title: String
-}
-
"""Connection between the RootQuery type and the Menu type"""
type RootQueryToMenuConnection implements Connection & MenuConnection {
"""Edges for the RootQueryToMenuConnection connection"""
@@ -20485,6 +21197,118 @@ input RootQueryToPostFormatConnectionWhereArgs {
updateTermMetaCache: Boolean
}
+"""Connection between the RootQuery type and the Profile type"""
+type RootQueryToProfileConnection implements Connection & ProfileConnection {
+ """Edges for the RootQueryToProfileConnection connection"""
+ edges: [RootQueryToProfileConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Profile!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: RootQueryToProfileConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type RootQueryToProfileConnectionEdge implements Edge & ProfileConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String
+
+ """The item at the end of the edge"""
+ node: Profile!
+}
+
+"""
+Pagination metadata specific to "RootQueryToProfileConnection" collections. Provides cursors and flags for navigating through sets of RootQueryToProfileConnection Nodes.
+"""
+type RootQueryToProfileConnectionPageInfo implements PageInfo & ProfileConnectionPageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Arguments for filtering the RootQueryToProfileConnection connection"""
+input RootQueryToProfileConnectionWhereArgs {
+ """
+ The user that's connected as the author of the object. Use the userId for the author object.
+ """
+ author: Int
+
+ """Find objects connected to author(s) in the array of author's userIds"""
+ authorIn: [ID]
+
+ """Find objects connected to the author by the author's nicename"""
+ authorName: String
+
+ """
+ Find objects NOT connected to author(s) in the array of author's userIds
+ """
+ authorNotIn: [ID]
+
+ """Filter the connection based on dates"""
+ dateQuery: DateQueryInput
+
+ """
+ True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
+ """
+ hasPassword: Boolean
+
+ """Specific database ID of the object"""
+ id: Int
+
+ """Array of IDs for the objects to retrieve"""
+ in: [ID]
+
+ """Get objects with a specific mimeType property"""
+ mimeType: MimeTypeEnum
+
+ """Slug / post_name of the object"""
+ name: String
+
+ """Specify objects to retrieve. Use slugs"""
+ nameIn: [String]
+
+ """
+ Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
+ """
+ notIn: [ID]
+
+ """What parameter to use to order the objects by."""
+ orderby: [PostObjectsConnectionOrderbyInput]
+
+ """Use ID to return only children. Use 0 to return only top-level items"""
+ parent: ID
+
+ """Specify objects whose parent is in an array"""
+ parentIn: [ID]
+
+ """Specify posts whose parent is not in an array"""
+ parentNotIn: [ID]
+
+ """Show posts with a specific password."""
+ password: String
+
+ """Show Posts based on a keyword search"""
+ search: String
+
+ """Retrieve posts where post status is in an array."""
+ stati: [PostStatusEnum]
+
+ """Show posts with a specific status."""
+ status: PostStatusEnum
+
+ """Title of the object"""
+ title: String
+}
+
"""Connection between the RootQuery type and the ProjectCategory type"""
type RootQueryToProjectCategoryConnection implements Connection & ProjectCategoryConnection {
"""Edges for the RootQueryToProjectCategoryConnection connection"""
@@ -23736,6 +24560,56 @@ type UpdateEventPayload {
event: Event
}
+"""Input for the updateListing mutation."""
+input UpdateListingInput {
+ """The userId to assign as the author of the object"""
+ authorId: ID
+
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
+ """
+ date: String
+
+ """The ID of the Listing object"""
+ id: ID!
+
+ """Override the edit lock when another user is editing the post"""
+ ignoreEditLock: Boolean
+
+ """
+ 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 password used to protect the content of the object"""
+ password: String
+
+ """The slug of the object"""
+ slug: String
+
+ """The status of the object"""
+ status: PostStatusEnum
+
+ """The title of the object"""
+ title: String
+}
+
+"""The payload for the updateListing mutation."""
+type UpdateListingPayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The Post object mutation type."""
+ listing: Listing
+}
+
"""Input for the updateLocation mutation."""
input UpdateLocationInput {
"""
@@ -23853,56 +24727,6 @@ type UpdateMediaItemPayload {
mediaItem: MediaItem
}
-"""Input for the updateMembership mutation."""
-input UpdateMembershipInput {
- """The userId to assign as the author of the object"""
- authorId: ID
-
- """
- This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """
- The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
- """
- date: String
-
- """The ID of the Membership object"""
- id: ID!
-
- """Override the edit lock when another user is editing the post"""
- ignoreEditLock: Boolean
-
- """
- 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 password used to protect the content of the object"""
- password: String
-
- """The slug of the object"""
- slug: String
-
- """The status of the object"""
- status: PostStatusEnum
-
- """The title of the object"""
- title: String
-}
-
-"""The payload for the updateMembership mutation."""
-type UpdateMembershipPayload {
- """
- If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
- """
- clientMutationId: String
-
- """The Post object mutation type."""
- membership: Membership
-}
-
"""Input for the updatePage mutation."""
input UpdatePageInput {
"""The userId to assign as the author of the object"""
@@ -24060,6 +24884,56 @@ type UpdatePostPayload {
post: Post
}
+"""Input for the updateProfile mutation."""
+input UpdateProfileInput {
+ """The userId to assign as the author of the object"""
+ authorId: ID
+
+ """
+ This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """
+ The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17
+ """
+ date: String
+
+ """The ID of the Profile object"""
+ id: ID!
+
+ """Override the edit lock when another user is editing the post"""
+ ignoreEditLock: Boolean
+
+ """
+ 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 password used to protect the content of the object"""
+ password: String
+
+ """The slug of the object"""
+ slug: String
+
+ """The status of the object"""
+ status: PostStatusEnum
+
+ """The title of the object"""
+ title: String
+}
+
+"""The payload for the updateProfile mutation."""
+type UpdateProfilePayload {
+ """
+ If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions.
+ """
+ clientMutationId: String
+
+ """The Post object mutation type."""
+ profile: Profile
+}
+
"""Input for the updateProjectCategory mutation."""
input UpdateProjectCategoryInput {
"""The slug that the project_category will be an alias of"""
@@ -24737,6 +25611,28 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden
"""
lastName: String
+ """Connection between the User type and the Listing type"""
+ listings(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: UserToListingConnectionWhereArgs
+ ): UserToListingConnection
+
"""
The preferred language locale set for the user. Value derived from get_user_locale().
"""
@@ -24764,28 +25660,6 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden
where: UserToMediaItemConnectionWhereArgs
): UserToMediaItemConnection
- """Connection between the User type and the Membership type"""
- memberships(
- """
- 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
-
- """Arguments for filtering the connection"""
- where: UserToMembershipConnectionWhereArgs
- ): UserToMembershipConnection
-
"""
Display name of the user. This is equivalent to the WP_User->display_name property.
"""
@@ -24843,6 +25717,28 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden
where: UserToPostConnectionWhereArgs
): UserToPostConnection
+ """Connection between the User type and the Profile type"""
+ profiles(
+ """
+ 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
+
+ """Arguments for filtering the connection"""
+ where: UserToProfileConnectionWhereArgs
+ ): UserToProfileConnection
+
"""
The date the user registered or was created. The field follows a full ISO8601 date string format.
"""
@@ -25068,6 +25964,9 @@ enum UserRoleEnum {
"""User role with specific capabilities"""
SUBSCRIBER
+
+ """User role with specific capabilities"""
+ TRANSLATOR
}
"""Connection between the User type and the Comment type"""
@@ -25394,31 +26293,31 @@ type UserToEnqueuedStylesheetConnectionPageInfo implements EnqueuedStylesheetCon
startCursor: String
}
-"""Connection between the User type and the mediaItem type"""
-type UserToMediaItemConnection implements Connection & MediaItemConnection {
- """Edges for the UserToMediaItemConnection connection"""
- edges: [UserToMediaItemConnectionEdge!]!
+"""Connection between the User type and the Listing type"""
+type UserToListingConnection implements Connection & ListingConnection {
+ """Edges for the UserToListingConnection connection"""
+ edges: [UserToListingConnectionEdge!]!
"""The nodes of the connection, without the edges"""
- nodes: [MediaItem!]!
+ nodes: [Listing!]!
"""Information about pagination in a connection."""
- pageInfo: UserToMediaItemConnectionPageInfo!
+ pageInfo: UserToListingConnectionPageInfo!
}
"""An edge in a connection"""
-type UserToMediaItemConnectionEdge implements Edge & MediaItemConnectionEdge {
+type UserToListingConnectionEdge implements Edge & ListingConnectionEdge {
"""A cursor for use in pagination"""
cursor: String
"""The item at the end of the edge"""
- node: MediaItem!
+ node: Listing!
}
"""
-Pagination metadata specific to "UserToMediaItemConnection" collections. Provides cursors and flags for navigating through sets of UserToMediaItemConnection Nodes.
+Pagination metadata specific to "UserToListingConnection" collections. Provides cursors and flags for navigating through sets of UserToListingConnection Nodes.
"""
-type UserToMediaItemConnectionPageInfo implements MediaItemConnectionPageInfo & PageInfo & WPPageInfo {
+type UserToListingConnectionPageInfo implements ListingConnectionPageInfo & PageInfo & WPPageInfo {
"""When paginating forwards, the cursor to continue."""
endCursor: String
@@ -25432,8 +26331,8 @@ type UserToMediaItemConnectionPageInfo implements MediaItemConnectionPageInfo &
startCursor: String
}
-"""Arguments for filtering the UserToMediaItemConnection connection"""
-input UserToMediaItemConnectionWhereArgs {
+"""Arguments for filtering the UserToListingConnection connection"""
+input UserToListingConnectionWhereArgs {
"""
The user that's connected as the author of the object. Use the userId for the author object.
"""
@@ -25506,31 +26405,31 @@ input UserToMediaItemConnectionWhereArgs {
title: String
}
-"""Connection between the User type and the Membership type"""
-type UserToMembershipConnection implements Connection & MembershipConnection {
- """Edges for the UserToMembershipConnection connection"""
- edges: [UserToMembershipConnectionEdge!]!
+"""Connection between the User type and the mediaItem type"""
+type UserToMediaItemConnection implements Connection & MediaItemConnection {
+ """Edges for the UserToMediaItemConnection connection"""
+ edges: [UserToMediaItemConnectionEdge!]!
"""The nodes of the connection, without the edges"""
- nodes: [Membership!]!
+ nodes: [MediaItem!]!
"""Information about pagination in a connection."""
- pageInfo: UserToMembershipConnectionPageInfo!
+ pageInfo: UserToMediaItemConnectionPageInfo!
}
"""An edge in a connection"""
-type UserToMembershipConnectionEdge implements Edge & MembershipConnectionEdge {
+type UserToMediaItemConnectionEdge implements Edge & MediaItemConnectionEdge {
"""A cursor for use in pagination"""
cursor: String
"""The item at the end of the edge"""
- node: Membership!
+ node: MediaItem!
}
"""
-Pagination metadata specific to "UserToMembershipConnection" collections. Provides cursors and flags for navigating through sets of UserToMembershipConnection Nodes.
+Pagination metadata specific to "UserToMediaItemConnection" collections. Provides cursors and flags for navigating through sets of UserToMediaItemConnection Nodes.
"""
-type UserToMembershipConnectionPageInfo implements MembershipConnectionPageInfo & PageInfo & WPPageInfo {
+type UserToMediaItemConnectionPageInfo implements MediaItemConnectionPageInfo & PageInfo & WPPageInfo {
"""When paginating forwards, the cursor to continue."""
endCursor: String
@@ -25544,8 +26443,8 @@ type UserToMembershipConnectionPageInfo implements MembershipConnectionPageInfo
startCursor: String
}
-"""Arguments for filtering the UserToMembershipConnection connection"""
-input UserToMembershipConnectionWhereArgs {
+"""Arguments for filtering the UserToMediaItemConnection connection"""
+input UserToMediaItemConnectionWhereArgs {
"""
The user that's connected as the author of the object. Use the userId for the author object.
"""
@@ -25876,6 +26775,118 @@ input UserToPostConnectionWhereArgs {
title: String
}
+"""Connection between the User type and the Profile type"""
+type UserToProfileConnection implements Connection & ProfileConnection {
+ """Edges for the UserToProfileConnection connection"""
+ edges: [UserToProfileConnectionEdge!]!
+
+ """The nodes of the connection, without the edges"""
+ nodes: [Profile!]!
+
+ """Information about pagination in a connection."""
+ pageInfo: UserToProfileConnectionPageInfo!
+}
+
+"""An edge in a connection"""
+type UserToProfileConnectionEdge implements Edge & ProfileConnectionEdge {
+ """A cursor for use in pagination"""
+ cursor: String
+
+ """The item at the end of the edge"""
+ node: Profile!
+}
+
+"""
+Pagination metadata specific to "UserToProfileConnection" collections. Provides cursors and flags for navigating through sets of UserToProfileConnection Nodes.
+"""
+type UserToProfileConnectionPageInfo implements PageInfo & ProfileConnectionPageInfo & WPPageInfo {
+ """When paginating forwards, the cursor to continue."""
+ endCursor: String
+
+ """When paginating forwards, are there more items?"""
+ hasNextPage: Boolean!
+
+ """When paginating backwards, are there more items?"""
+ hasPreviousPage: Boolean!
+
+ """When paginating backwards, the cursor to continue."""
+ startCursor: String
+}
+
+"""Arguments for filtering the UserToProfileConnection connection"""
+input UserToProfileConnectionWhereArgs {
+ """
+ The user that's connected as the author of the object. Use the userId for the author object.
+ """
+ author: Int
+
+ """Find objects connected to author(s) in the array of author's userIds"""
+ authorIn: [ID]
+
+ """Find objects connected to the author by the author's nicename"""
+ authorName: String
+
+ """
+ Find objects NOT connected to author(s) in the array of author's userIds
+ """
+ authorNotIn: [ID]
+
+ """Filter the connection based on dates"""
+ dateQuery: DateQueryInput
+
+ """
+ True for objects with passwords; False for objects without passwords; null for all objects with or without passwords
+ """
+ hasPassword: Boolean
+
+ """Specific database ID of the object"""
+ id: Int
+
+ """Array of IDs for the objects to retrieve"""
+ in: [ID]
+
+ """Get objects with a specific mimeType property"""
+ mimeType: MimeTypeEnum
+
+ """Slug / post_name of the object"""
+ name: String
+
+ """Specify objects to retrieve. Use slugs"""
+ nameIn: [String]
+
+ """
+ Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored
+ """
+ notIn: [ID]
+
+ """What parameter to use to order the objects by."""
+ orderby: [PostObjectsConnectionOrderbyInput]
+
+ """Use ID to return only children. Use 0 to return only top-level items"""
+ parent: ID
+
+ """Specify objects whose parent is in an array"""
+ parentIn: [ID]
+
+ """Specify posts whose parent is not in an array"""
+ parentNotIn: [ID]
+
+ """Show posts with a specific password."""
+ password: String
+
+ """Show Posts based on a keyword search"""
+ search: String
+
+ """Retrieve posts where post status is in an array."""
+ stati: [PostStatusEnum]
+
+ """Show posts with a specific status."""
+ status: PostStatusEnum
+
+ """Title of the object"""
+ title: String
+}
+
"""Connection between the User type and the ContentNode type"""
type UserToRevisionsConnection implements Connection & ContentNodeConnection {
"""Edges for the UserToRevisionsConnection connection"""
@@ -26128,14 +27139,6 @@ interface WithAcfGroupPostLocation {
groupPostLocation: GroupPostLocation
}
-"""
-Provides access to fields of the "GroupPostMembership" ACF Field Group via the "groupPostMembership" field
-"""
-interface WithAcfGroupPostMembership {
- """Fields of the GroupPostMembership ACF Field Group"""
- groupPostMembership: GroupPostMembership
-}
-
"""
Provides access to fields of the "GroupPostPage" ACF Field Group via the "groupPostPage" field
"""
@@ -26144,6 +27147,14 @@ interface WithAcfGroupPostPage {
groupPostPage: GroupPostPage
}
+"""
+Provides access to fields of the "GroupPostProfile" ACF Field Group via the "groupPostProfile" field
+"""
+interface WithAcfGroupPostProfile {
+ """Fields of the GroupPostProfile ACF Field Group"""
+ groupPostProfile: GroupPostProfile
+}
+
"""
Provides access to fields of the "GroupPostProject" ACF Field Group via the "groupPostProject" field
"""