Я пытаюсь получить список изображений в Gatsby с GraphQL из моих файлов уценки.Если я использую одно изображение, оно работает.
список уценок:
images:
- ./images/01.jpg
- ./images/02.jpg
- ./images/03.jpg
запрос:
{
allMarkdownRemark {
edges {
node {
frontmatter {
images {
id
}
}
}
}
}
}
результат:
"errors": [
{
"message": "The \"path\" argument must be of type string. Received type object",
"locations": [
{
"line": 6,
"column": 11
}
],
"path": [
"allMarkdownRemark",
"edges",
4,
"node",
"frontmatter",
"images"
]
}
],
Спасибо!