Unable to query Images (media) field on model (v4 Beta 12)

System Information
  • Strapi Version: 4.0.0-beta.12
  • Operating System: Debian GNU/Linux 11 (bullseye) (Docker image: node:16-bullseye)
  • Database: MySQL 8.0.19 (Docker image: bitnami/mysql:8.0.19-debian-10-r57)
  • Node Version: v16.13.0
  • NPM Version: 8.1.0
  • Yarn Version: 1.22.15

I’m having some struggles with fetching Images that are saved against a model as an Uploads media type.
I have set permissions for both the Model and Uploads as findOne and findAll for Public and Authorized, and am receiving a FORBIDDEN response on GraphQL and 500 Unknown Column error over REST.

Model:

{
  "kind": "collectionType",
  "collectionName": "properties",
  "info": {
    "singularName": "property",
    "pluralName": "properties",
    "displayName": "Property",
    "description": ""
  },
  "options": {
    "draftAndPublish": true
  },
  "pluginOptions": {},
  "attributes": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": "richtext"
    },
    "destination": {
      "type": "relation",
      "relation": "manyToOne",
      "target": "api::destination.destination",
      "inversedBy": "properties"
    },
    "images": {
      "allowedTypes": [
        "images",
        "files",
        "videos"
      ],
      "type": "media",
      "multiple": true
    }
  }
}

Responses:
GQL:

I receive the same responses after authentication as well.
And I am able to query Uploads with no issues both for Public and Authorized.

Any ideas?
Cheers!

@Chris_Lawrence Hello Chris. Did you find out anything? I have the same issue and Im unable to find out if Im doing something wrong or its a bug/not yet implemented

I have not unfortunately, I did a fresh install of beta 14 to see if that fixed it, but it did not. I’ll post on Github and link it back here.

@DMehaffy Hello, sry to bother you, but there seems to be no info about this. Is this WIP?