mirror of
https://github.com/github/codeql.git
synced 2026-02-19 16:33:40 +01:00
39 lines
461 B
Plaintext
39 lines
461 B
Plaintext
<%graphql
|
|
fragment Foo on Bar {
|
|
some {
|
|
queryText
|
|
moreProperties
|
|
}
|
|
}
|
|
|
|
fragment AnotherFragment on SomethingElse {
|
|
other {
|
|
things
|
|
}
|
|
here {
|
|
etc
|
|
}
|
|
}
|
|
%>
|
|
|
|
<%= "hello world" %>
|
|
|
|
<%#= "this is commented out" %>
|
|
|
|
<%# "this is also commented out" %>
|
|
|
|
<% xs = "" %>
|
|
<ul>
|
|
<% for x in ["foo", "bar", "baz"] do %>
|
|
<li><%= xs += x
|
|
xs
|
|
%></li>
|
|
<% end %>
|
|
</ul>
|
|
<%%>
|
|
<%-%>
|
|
<%#%>
|
|
<%graphql%>
|
|
<%=%>
|
|
|