summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/project
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-1914-23/+487
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-215-20/+321
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-196-19/+259
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-2013-38/+143
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-2031-189/+824
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-1813-5/+796
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-2010-107/+1291
|
* Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot2020-04-201-0/+11
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-142-1/+38
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-091-23/+11
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-082-0/+91
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-301-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-261-0/+183
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-311-13/+78
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-301-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-291-0/+191
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-241-0/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-231-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-101-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-071-0/+64
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-061-0/+69
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-181-0/+46
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-131-1/+92
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-292-0/+4
|
* Expose namespace storage statistics with GraphQLAlessio Caiazza2019-08-221-1/+1
| | | | | | | | | | | | | | | | | | | Root namespaces have storage statistics. This commit allows namespace owners to get those stats via GraphQL queries like the following one { namespace(fullPath: "a_namespace_path") { rootStorageStatistics { storageSize repositorySize lfsObjectsSize buildArtifactsSize packagesSize wikiSize } } }
* Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceMarin Jankovski2019-07-031-0/+18
|\
| * Added commit type to tree GraphQL typePhil Hughes2019-06-281-0/+18
| |
* | Enforce authorizations for non-nullable fieldsBob Van Landuyt2019-06-211-0/+24
|/ | | | | | | | | | | | | This makes sure we also enforce authorizations for non-nullable fields. We are defining our authorizations on the unwrapped types (Repository). But when a type like that is presented in a non-nullable field, it's type is different (Repository!). The non-nullable type would not have the authorization metadata. This makes sure we check the metadata on the unwrapped type for finding authorizations.
* Do not blindly expose public project statisticsMayra Cabrera2019-06-141-2/+2
| | | | Add the missing check on GraphQL API for project statistics
* Expose comments on Noteables in GraphQLBob Van Landuyt2019-06-142-0/+114
| | | | | | | | | This exposes `Note`s on Issues & MergeRequests using a `Types::Notes::NoteableType` in GraphQL. Exposing notes on a new type can be done by implementing the `NoteableType` interface on the type. The presented object should be a `Noteable`.
* Add Namespace and ProjectStatistics to GraphQL APIAlessio Caiazza2019-06-031-0/+43
| | | | | | We can query namespaces, and nested projects. Projects now exposes statistics
* Added repository files to GraphQL APIPhil Hughes2019-05-222-0/+110
|
* Only check abilities on rendered GraphQL nodesBob Van Landuyt2019-04-181-2/+26
| | | | | With this we only check abilities on the rendered edges of a GraphQL connection instead of all the nodes in it.
* Add merge request popover with detailsSam Bigelow2019-03-211-2/+2
| | | | | | | | | - Show pipeline status, title, MR Status and project path - Popover attached to gitlab flavored markdown everywhere, including: + MR/Issue Title + MR/Issue description + MR/Issue comments + Rendered markdown files
* Use a block and move setup to example directly56485-implement-graphql-mergerequestsresolverLin Jen-Shin2019-02-141-3/+1
|
* Instead of returning all or nothing, return whichever passedLin Jen-Shin2019-02-141-0/+36
| | | | And add tests
* Suggests issues when typing titlePhil Hughes2018-11-271-0/+59
| | | | | | | | | | | | | | | This suggests possibly related issues when the user types a title. This uses GraphQL to allow the frontend to request the exact data that is requires. We also get free caching through the Vue Apollo plugin. With this we can include the ability to import .graphql files in JS and Vue files. Also we now have the Vue test utils library to make testing Vue components easier. Closes #22071
* Add pipeline lists to GraphQLBob Van Landuyt2018-07-041-0/+24
| | | | | | | | | This adds Keyset pagination to GraphQL lists. PoC for that is pipelines on merge requests and projects. When paginating a list, the base-64 encoded id of the ordering field (in most cases the primary key) can be passed in the `before` or `after` GraphQL argument.
* Expose permissions on types in GraphQLBob Van Landuyt2018-06-281-0/+70
This adds a reusable way to expose permissions for a user to types in GraphQL.