Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Re: Trying to get GID of uploaded font, nodes are blank

Trying to get GID of uploaded font, nodes are blank

Steve_King
Shopify Partner
12 1 5

I'm new to GraphiQL and working through the tutorial to use a custom font in extensible checkout.

 

On this step - Step 4: Apply a custom font to secondary surfaces - it suggests to use this to query files to find the GID of a font I just uploaded:

 

 

query queryFiles {
  files(first: 10) {
    edges {
      node {
        ... on GenericFile {
          id
          url
          fileStatus
        }
      }
    }
  }
}

 

 

The tutorial says I should then get a response like this:

 

 

{
  "data": {
    "files": {
      "edges": [
        {
          "node": {
            "id": "gid://shopify/GenericFile/1",
            "url": "https://cdn.shopify.com/s/files/1/0000/0001/files/font-file.woff2?v=1682440653",
            "fileStatus": "READY"
          }
        }
      ]
    }
  }
}

 

 

although in my response, the nodes are all empty:

 

 

{
  "data": {
    "files": {
      "edges": [
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        },
        {
          "node": {}
        }
      ]
    }
  },
  "extensions": {
    "cost": {
      "requestedQueryCost": 6,
      "actualQueryCost": 6,
      "throttleStatus": {
        "maximumAvailable": 20000,
        "currentlyAvailable": 19994,
        "restoreRate": 1000
      }
    }
  }
}

 

 

Am I missing something? 

 

Thanks!

Reply 1 (1)

victorlbill
Shopify Partner
1 0 0

I have the same issue. Please help 🙂