mure 0.2.5

A command line tool for creating and managing multiple repositories.
query SearchRepositoryQuery($query: String!, $cursor: String, $first: Int!) {
  repos: search(
    query: $query
    type: REPOSITORY
    first: $first
    after: $cursor
  ) {
    pageInfo {
      startCursor
      endCursor
      hasNextPage
    }
    edges {
      node {
        __typename
        ... on Repository {
          url
          name
          __typename
          defaultBranchRef {
            name
            target {
              __typename
              oid
            }
          }
          latestRelease {
            name
            publishedAt
          }
          issues(states: OPEN) {
            totalCount
          }
          pullRequests(states: OPEN) {
            totalCount
          }
        }
      }
    }
  }
}