issues

package
v0.3.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 1, 2022 License: BSD-2-Clause Imports: 4 Imported by: 0

Documentation

Overview

Lists the issues reported in a single file mentioned by the user

Lists the issues reported in the whole project

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileIssuesListParams

type FileIssuesListParams struct {
	Owner    string
	RepoName string
	Provider string
	FilePath string
	Limit    int
}

type FileIssuesListRequest

type FileIssuesListRequest struct {
	Params FileIssuesListParams
}

Request struct

func (FileIssuesListRequest) Do

Function to execute the query

type FileIssuesResponse

type FileIssuesResponse struct {
	Repository struct {
		File struct {
			Issues struct {
				Edges []struct {
					Node struct {
						Path          string `json:"path"`
						Beginline     int    `json:"beginLine"`
						Endline       int    `json:"endLine"`
						Concreteissue struct {
							Analyzer struct {
								Shortcode string `json:"shortcode"`
							} `json:"analyzer"`
							Title     string `json:"title"`
							Shortcode string `json:"shortcode"`
						} `json:"concreteIssue"`
					} `json:"node"`
				} `json:"edges"`
			} `json:"issues"`
		} `json:"file"`
	} `json:"repository"`
}

Response struct

type IGQLClient

type IGQLClient interface {
	GQL() *graphql.Client
	GetToken() string
}

GraphQL client interface

type IssuesListParams

type IssuesListParams struct {
	Owner    string
	RepoName string
	Provider string
	Limit    int
}

type IssuesListRequest

type IssuesListRequest struct {
	Params IssuesListParams
}

func (IssuesListRequest) Do

func (i IssuesListRequest) Do(ctx context.Context, client IGQLClient) ([]issues.Issue, error)

type IssuesListResponse

type IssuesListResponse struct {
	Repository struct {
		Issues struct {
			Edges []struct {
				Node struct {
					Path          string `json:"path"`
					Beginline     int    `json:"beginLine"`
					Endline       int    `json:"endLine"`
					Concreteissue struct {
						Analyzer struct {
							Shortcode string `json:"shortcode"`
						} `json:"analyzer"`
						Title     string `json:"title"`
						Shortcode string `json:"shortcode"`
					} `json:"concreteIssue"`
				} `json:"node"`
			} `json:"edges"`
		} `json:"issues"`
	} `json:"repository"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL