diff --git a/sdk/assemblyscript/examples/graphql/extras/sampledata.graphql b/sdk/assemblyscript/examples/graphql/extras/sampledata.graphql deleted file mode 100644 index 28ea7f36..00000000 --- a/sdk/assemblyscript/examples/graphql/extras/sampledata.graphql +++ /dev/null @@ -1,22 +0,0 @@ -# This mutation will create some sample data in Dgraph. -# It can be used for the queries in this example. - -mutation { - # Clear any existing people first - deletePerson(filter: {}) { - deleted: numUids - } - - # Add some people - addPerson( - input: [ - { firstName: "Harry", lastName: "Potter" } - { firstName: "Hermione", lastName: "Granger" } - { firstName: "Ron", lastName: "Weasley" } - { firstName: "Albus", lastName: "Dumbledore" } - { firstName: "Luna", lastName: "Lovegood" } - ] - ) { - added: numUids - } -} diff --git a/sdk/assemblyscript/examples/graphql/extras/schema.graphql b/sdk/assemblyscript/examples/graphql/extras/schema.graphql deleted file mode 100644 index dc828e33..00000000 --- a/sdk/assemblyscript/examples/graphql/extras/schema.graphql +++ /dev/null @@ -1,7 +0,0 @@ -# This schema is used for the queries in this example. - -type Person { - id: ID! - firstName: String! @search(by: [hash]) - lastName: String! @search(by: [hash]) -}