Move out of frontend folder

This commit is contained in:
Ben Ramey
2018-06-06 20:36:20 -05:00
committed by benjaminramey
parent 00400390b7
commit 84072c66db
38 changed files with 1249 additions and 0 deletions

11
src/queries/listRuns.js Normal file
View File

@@ -0,0 +1,11 @@
import gql from 'graphql-tag'
export default gql`
query {
listRuns(first:10,after:"") {
items {
id,
name
},
nextToken
}
}`