github.com/unigraph-dev/dgraph@v1.1.1-0.20200923154953-8b52b426f765/gql/fuzz-data/corpus/test081.in (about)

     1  
     2  	# Mutation
     3  		mutation {
     4  			# Set block
     5  			set {
     6  				<name> <is> <something> .
     7  				<hometown> <is> <san/francisco> .
     8  			}
     9  			# Delete block
    10  			delete {
    11  				<name> <is> <something-else> .
    12  			}
    13  		}
    14  		# Query starts here.
    15  		query {
    16  			me(func: uid( 0x5)) { # now mention children
    17  				name		# Name
    18  				hometown # hometown of the person
    19  			}
    20  		}
    21