> ## Documentation Index
> Fetch the complete documentation index at: https://dev.lelabquantique.com/llms.txt
> Use this file to discover all available pages before exploring further.

# partner

```graphql theme={null}
partner { 
  id: ID!
}: Partner
```

Retrieve an partner

## Arguments

<ParamField body="id" type="ID!">
  The globally unique identifier of the object.
</ParamField>

## Response

Type: `Partner`

<ResponseField name="id" type="ID!">
  The globally unique identifier of the partner object.
</ResponseField>

<ResponseField name="guid" type="String">
  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.
</ResponseField>

<ResponseField name="date" type="String">
  Post publishing date.
</ResponseField>

<ResponseField name="dateGmt" type="String">
  The publishing date set in GMT.
</ResponseField>

<ResponseField name="partners" type="Partners">
  Fields of the Partners ACF Field Group
</ResponseField>

<Expandable title="properties">
  <ResponseField name="partnerDescription" type="String">
    What is the work of this company?
  </ResponseField>

  <ResponseField name="partnerLogo" type="AcfMediaItemConnectionEdge">
    Field of the "image" Field Type added to the schema as part of the "Partners" Field Group
  </ResponseField>

  <Expandable title="properties">
    <ResponseField name="cursor" type="String">
      Opaque reference to the nodes position in the connection. Value can be used with pagination args.p
    </ResponseField>

    <ResponseField name="node" type="MediaItem!">
      The node of the connection, without the edges
    </ResponseField>

    <Expandable title="properties">
      <ResponseField name="altText" type="String">
        Alternative text to display when resource is not displayed
      </ResponseField>

      <ResponseField name="mediaItemUrl" type="String">
        Url of the mediaItem
      </ResponseField>
    </Expandable>
  </Expandable>

  <ResponseField name="partnerName" type="String">
    Name of partner (Quandela, Pascal...)
  </ResponseField>

  <ResponseField name="partnerWebsiteLink" type="String">
    Field of the "url" Field Type added to the schema as part of the "Partners" Field Group
  </ResponseField>

  <ResponseField name="typeOfCompany" type="[String]">
    Field of the "checkbox" Field Type added to the schema as part of the "Partners" Field Group
  </ResponseField>

  <ResponseField name="technologie" type="[String]">
    Field of the "checkbox" Field Type added to the schema as part of the "Partners" Field Group
  </ResponseField>
</Expandable>

<RequestExample>
  ```graphql query theme={null}
  query partner ($id:ID!) {
    	partner(id:$id) {
      		id
      		guid
      		date
      		dateGmt
          partners {
            partnerDescription
            partnerLogo {
              node {
                altText
                mediaItemUrl
              }
            }
            partnerName
            partnerWebsiteLink
            typeOfCompany
            technologie
          }
      }
  }
  ```

  ```json variables theme={null}
  {
      "id": "cG9zdDoxNTkx"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "partner": {
        "id": "cG9zdDoxNTkx",
        "guid": "string",
        "date": "2024-01-01T00:00:00",
        "dateGmt": "2024-01-01T00:00:00",
        "partners": {
          "partnerDescription": "string",
          "partnerLogo": {
            "node": {
              "altText": "string",
              "mediaItemUrl": "string"
            }
          },
          "partnerName": "string",
          "partnerWebsiteLink": "string",
          "typeOfCompany": [
            "string"
          ],
          "technologie": [
            "string"
          ]
        }
      }
    }
  }
  ```
</ResponseExample>
