mirror of
https://github.com/github/codeql.git
synced 2026-03-30 20:28:15 +02:00
33 lines
425 B
Plaintext
33 lines
425 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>
|