Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 423 Bytes

File metadata and controls

39 lines (33 loc) · 423 Bytes

this is an MD file

It would be a shame if the word graphql accidentally triggered highlighting Looks like it doesn't though! good

query {
  something
}
# comment
query {
  something
}
query {
    something @directive(first: "string")
}

type Example {
    something
}
<?php
  $query = <<<GRAPHQL
    query {
      site {
        name
      }
    }
  GRAPHQL;
?>