https://github.com/matchilling/contentful-example
https://github.com/matchilling/contentful-example
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/matchilling/contentful-example
- Owner: matchilling
- Created: 2023-05-17T07:44:55.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-17T09:34:47.000Z (about 3 years ago)
- Last Synced: 2025-07-06T15:02:45.949Z (about 1 year ago)
- Language: Java
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contentful Example
## Backend application
Start the app via the command line running the following command.
```shell
$ ./gradlew :contentful-backend:bootRun
```
Go to http://localhost:8080/graphiql and execute the example queries below:
```graphql
{
entityById(id: "461ccba0-fd5e-4f89-923f-c75b7d14cb71") {
id
name
type
}
entityByName(name: "Jane Doe") {
id
name
type
}
}
```