A Smalltalk GraphQL Implementation
This project only works on VisualWorks 7.4, to install GraphQL please load the following parcels on order:
- PetitExtensions
- PetitParser
- PetitTests
- GraphQLBeta
- GraphQLExtensions
- GraphQLBetaDemoSite
Once load all the parcels of our project. If everything is going well, all the test must pass, except the tests of the classes:
- GQLTypeValidatorTest
- GQLDocumentTypeValidatorTest
For the moment our application works well for request based on selection sets.
There are some classes very important on Visual Works for GraphQL:
- Query: It's the entry point by default of the demo. Also on the class side has defined the schema used by the demo.
- GraphQLBetaDemoSite: It's the class to start the demo, it works with the schema of the Query class, the entry point is a Query instance and returns the results on JSON.
- GraphQL: It's the class that attends request and return the answer.
If you want to add your data to the Schema, you can modify the schema method on the class side of Query. Remember that the schema is defined as a text and follows the specifications of GraphQL. Also don't forget to create all the necessary methods (operations) on the instance side of Query to provide the answer according to the schema defined.
- Complete parsing of schema.
- Complete parsing of any valid request.
- Interpretation of simple request based on selection sets.
- Add tests for interpretation of request with fragments.
- Interpretation of request with fragments.
- Add tests for interpretation of any valid request.
- Interpretation of any valid request.
- Add tests for error handling.
- Error handling.
- Add tests for type checking rules.
- Type checking of the rules.
- Add tests for introspection.
- Introspection.
To practice with our demo follow this steps:
- Open a workspace and write the following line:
GraphQLBetaDemoSite demoStart
- Open the browser and go to the url: localhost:8888/
- Write the following request on the text area:
{
allFilms{
name
}
}
- Press the button Submit.
- And you will have the response for this request.