https://github.com/alexanderprod/gatsby-source-filesystem-theme-bug
https://github.com/alexanderprod/gatsby-source-filesystem-theme-bug
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexanderprod/gatsby-source-filesystem-theme-bug
- Owner: AlexanderProd
- Created: 2022-07-11T09:33:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-11T10:06:58.000Z (almost 4 years ago)
- Last Synced: 2025-04-08T07:56:54.056Z (about 1 year ago)
- Language: JavaScript
- Size: 4.67 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Steps to Reproduce
1. clone the repository
2. `yarn workspace example.com install`
3. `yarn workspace example.com start`
4. go to http://localhost:8000/___graphql
5. run the following query
```
query MyQuery {
allFile {
edges {
node {
id
name
}
}
}
}
```
## Expected Result
Expected the files in `example.com/images/` to be shown in the graphql query.
## Actual Result
No files are found, even though `gatsby-source-filesystem` is configured and files are present in the `example.com/images/` directory.