Bläddra i källkod

Update README;

bjorn 9 år sedan
förälder
incheckning
7009dbc7a9
1 ändrade filer med 27 tillägg och 24 borttagningar
  1. 27 24
      README.md

+ 27 - 24
README.md

@@ -3,30 +3,6 @@ GraphQL Lua
 
 Lua implementation of GraphQL parser using LPeg.  Experimental.
 
-Right now it can parse pretty much all of the query syntax:
-
-- Documents
-- Definitions
-  - OperationDefinition
-  - FragmentDefinition
-- Selections
-- Fields
-- Aliases
-- Arguments
-- FragmentSpreads and InlineFragments
-- All value types (scalars, enums, lists, objects, variables).
-- Variables (typed)
-- Directives
-
-Missing features:
-
-- Validation, error handling
-- Comments
-- Type definitions, interfaces, etc.
-- Introspection
-- Execution
-- Unicode stuff
-
 Example
 ---
 
@@ -84,6 +60,33 @@ Gives you this scary table:
 }
 ```
 
+Status
+---
+
+Right now it can parse pretty much all of the query syntax:
+
+- Documents
+- Definitions
+  - OperationDefinition
+  - FragmentDefinition
+- Selections
+- Fields
+- Aliases
+- Arguments
+- FragmentSpreads and InlineFragments
+- All value types (scalars, enums, lists, objects, variables).
+- Variables (typed)
+- Directives
+
+Missing features:
+
+- Validation, error handling
+- Comments
+- Type definitions, interfaces, etc.
+- Introspection
+- Execution
+- Unicode stuff
+
 License
 ---