summaryrefslogtreecommitdiff
path: root/spec/graphql
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade graphql gem to 1.9.10Brett Walker2019-09-041-14/+14
| | | | | | - `edge_nodes` needs to get called on the object - added `include GlobalID::Identification` in a couple places - renamed `object` to `item` in spec due to conflict
* Upgrade GraphQL gem to 1.8.17Brett Walker2019-09-047-17/+17
| | | | | | | | | - Due to https://github.com/exAspArk/batch-loader/pull/32, we changed BatchLoader.for into BatchLoader::GraphQL.for - since our results are wrapped in a BatchLoader::GraphQL, calling `sync` during authorization is required to get real object - `graphql` now has it's own authorization system. Our `authorized?` method conflicted and required renaming
* Replace echo function with a resolverBrett Walker2019-08-261-0/+24
| | | | | The `GraphQL::Function` has been deprecated in favor of resolvers.
* Expose namespace storage statistics with GraphQLAlessio Caiazza2019-08-222-1/+15
| | | | | | | | | | | | | | | | | | | 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 } } }
* Remove code related to object hierarchy in MySQLremove-nested-groups-checksHeinrich Lee Yu2019-07-251-1/+1
| | | | | These are not required because MySQL is not supported anymore
* Added submodule links to Submodule type in GraphQL APIIgor2019-07-171-1/+1
| | | | This is part of migration of Folder View to Vue
* GraphQL support for Notes created in discussions62826-graphql-note-mutationsLuke Duncalfe2019-07-102-1/+21
| | | | | | | | | | | | A new `discussion_id` argument on the `createNote` mutation allows people to create a note within that discussion. The ability to lazy-load Discussions has been added, so GraphQL.object_from_id can treat Discussions the same as AR objects and batch load them. https://gitlab.com/gitlab-org/gitlab-ce/issues/62826 https://gitlab.com/gitlab-org/gitlab-ee/issues/9489
* Expose diff_refs on MergeRequestTypeLuke Duncalfe2019-07-103-2/+11
| | | | https://gitlab.com/gitlab-org/gitlab-ee/issues/9489
* Address reviewer comments58409-increase-graphql-complexity-for-fields-that-make-gitaly-callscharlieablett2019-07-051-3/+12
| | | | | | - Remove Gitaly call check for fields that have a constant complexity declared - Add associated test
* Address reviewer commentscharlieablett2019-07-031-23/+4
| | | | | | - Add 1 for all fields that call Gitaly (with resolvers or without) - Clarify comment regarding Gitaly call alert - Expose predicate `calls_gitaly?` instead of ivar
* Alert if `calls_gitaly` declaration missingcharlieablett2019-07-032-13/+9
| | | | | | | - Move `calls_gitaly_check` to public - Add instrumentation for flagging missing CallsGitaly declarations - Wrap resolver proc in before-and-after Gitaly counts to get the net Gitaly call count for the resolver.
* Remove potentially noisy warningcharlieablett2019-07-031-4/+0
| | | | | - If Gitaly calls are missing, it could be due to a conditional and may just become noise
* Enumerate fields with Gitaly callscharlieablett2019-07-031-0/+81
| | | | | | - Add a complexity of 1 if Gitaly is called at least once - Add an error notification if `calls_gitaly` isn't right for a particular field
* Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ceMarin Jankovski2019-07-034-2/+24
|\
| * Merge branch 'graphql-tree-last-commit' into 'master'Lin Jen-Shin2019-06-283-2/+13
| |\ | | | | | | | | | | | | Added commit type to tree GraphQL type See merge request gitlab-org/gitlab-ce!29412
| | * Added commit type to tree GraphQL typePhil Hughes2019-06-283-2/+13
| | |
| * | GraphQL mutations for add, remove and toggle emoji62826-graphql-emoji-mutationsLuke Duncalfe2019-06-281-0/+11
| |/ | | | | | | | | | | | | | | | | | | | | | | Adding new `AddAwardEmoji`, `RemoveAwardEmoji` and `ToggleAwardEmoji` GraphQL mutations. Adding new `#authorized_find_with_pre_checks!` and (unused, but for completeness `#authorized_find_with_post_checks!`) authorization methods. These allow us to perform an authorized find, and run our own additional checks before or after the authorization runs. https://gitlab.com/gitlab-org/gitlab-ce/issues/62826
* | Add authorize to LabelType and NamespaceTypeBob Van Landuyt2019-06-214-4/+5
|/ | | | This also disables the cop with a reasoning in types where appropriate
* Render GFM html in GraphQLBob Van Landuyt2019-06-206-18/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a `markdown_field` to our types. Using this helper will render a model's markdown field using the existing `MarkupHelper` with the context of the GraphQL query available to the helper. Having the context available to the helper is needed for redacting links to resources that the current user is not allowed to see. Because rendering the HTML can cause queries, the complexity of a these fields is raised by 5 above the default. The markdown field helper can be used as follows: ``` markdown_field :note_html, null: false ``` This would generate a field that will render the markdown field `note` of the model. This could be overridden by adding the `method:` argument. Passing a symbol for the method name: ``` markdown_field :body_html, null: false, method: :note ``` It will have this description by default: > The GitLab Flavored Markdown rendering of `note` This could be overridden by passing a `description:` argument. The type of a `markdown_field` is always `GraphQL::STRING_TYPE`.
* Expose comments on Noteables in GraphQLBob Van Landuyt2019-06-147-0/+63
| | | | | | | | | 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 LFS blob ID to GraphQL blob typePhil Hughes2019-06-101-1/+1
|
* Merge branch '62706-graphql-complexity-values-are-incorrectly-doubled' into ↵Jan Provaznik2019-06-064-21/+34
|\ | | | | | | | | | | | | | | | | 'master' Reduce GraphQL complexity for non-connection fields Closes #62706 See merge request gitlab-org/gitlab-ce!29165
| * Use :complexity_multiplier only with connectionsBrett Walker2019-06-054-21/+34
| | | | | | | | This helps reduce complexity for non-connections
* | Merge branch 'graphql-file-entry-url' into 'master'Nick Thomas2019-06-052-2/+2
|\ \ | | | | | | | | | | | | Add web_url to tree entry in GraphQL API See merge request gitlab-org/gitlab-ce!28646
| * | Add web_url to tree entry in GraphQL APIPhil Hughes2019-06-052-2/+2
| |/
* | Merge branch 'bvl-use-global-ids-graphql' into 'master'Jan Provaznik2019-06-052-1/+59
|\ \ | |/ |/| | | | | | | | | Use global IDs when exposing GraphQL resources Closes #62650 See merge request gitlab-org/gitlab-ce!29080
| * Expose IDs in GraphQL as a GlobalIDBob Van Landuyt2019-06-032-1/+59
| | | | | | | | | | | | | | | | | | | | This exposes all fields named `id` as GlobalIDs so they can be used across our entire GraphQL implementation. When the objects loaded are `ApplicationRecord`s. We'll use our existing batchloading to find them. Otherwise, we'll fall back to the default implementation of `GlobalID`: Calling the `.find` method on the class.
* | Expose wiki_size on GraphQL APIAlessio Caiazza2019-06-041-1/+2
|/
* Add Namespace and ProjectStatistics to GraphQL APIAlessio Caiazza2019-06-035-1/+94
| | | | | | We can query namespaces, and nested projects. Projects now exposes statistics
* Added common fields to the IssueType10795-add-epic-tree-BE-epic-graphql-supportBrett Walker2019-05-312-1/+7
| | | | | and allow passing of child_complexity to the 'resolver_complexity' metho
* Enables GraphQL batch requestsPhil Hughes2019-05-281-2/+2
| | | | | | | | | Enabling GraphQL batch requests allows for multiple queries to be sent in 1 request reducing the amount of requests we send to the server. Responses come come back in the same order as the queries were provided.
* Merge branch 'graphql-tree' into 'master'Nick Thomas2019-05-228-0/+95
|\ | | | | | | | | Added repository files to GraphQL API See merge request gitlab-org/gitlab-ce!28325
| * Added repository files to GraphQL APIPhil Hughes2019-05-228-0/+95
| |
* | Use BatchModelLoader for parent in GroupType62066-use-batchmodelloader-for-grouptypeBrett Walker2019-05-201-0/+32
|/
* Merge branch '58404-set-default-max-depth-for-GraphQL' into 'master'Sean McGivern2019-05-081-26/+60
|\ | | | | | | | | | | | | 58404 - setup max depth for graphql Closes #58404 See merge request gitlab-org/gitlab-ce!25737
| * 58404 - setup max depth for graphqlKen Ding2019-05-071-26/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 58404 - add change log 58404 - add spec 58404 - add more spec to test depth 2 58404 - fix spec 58404 - fix rubocop 58404 - refactor the code by Bob's advice 58404 - revert changes of all_graphql_fields_for 58404 - change text only 58404 - fix rspec according to gitlab's standard 58404 - revert previous spec 58404 - fix rubocop
* | GraphQL - Add extra complexity for resolversJan Provaznik2019-05-065-0/+64
|/ | | | | | | | | | | | | | | | | | If a field is a resolver, its complexity is automatically increased. By default we add extra points for sort and search arguments (which will be common for various resolvers). For specific resolvers we add field-specific complexity, e.g. for Issues complexity is increased if we filter issues by `labelName` (because then SQL query is more complex). We may want to tune these values in future depending on real-life results. Complexity is also dependent on the number of loaded nodes, but only if we don't search by specific ID(s). Also added complexity is limited (by default only twice more than child complexity) - the reason is that although it's more complex to process more items, the complexity increase is not linear (there is not so much difference between loading 10, 20 or 100 records from DB).
* Merge branch 'bw-add-graphql-groups' into 'master'Grzegorz Bizon2019-04-303-1/+19
|\ | | | | | | | | | | | | Add basic GraphQL for a Group Closes #60786 See merge request gitlab-org/gitlab-ce!27492
| * Basic GraphQL for a groupBrett Walker2019-04-233-1/+19
| | | | | | | | | | Add new query for Groups, with new GroupType and NamespaceType
* | Port changes for design management to CEBob Van Landuyt2019-04-291-70/+85
|/ | | | | | This ports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/ to CE
* Only check abilities on rendered GraphQL nodesBob Van Landuyt2019-04-182-16/+63
| | | | | With this we only check abilities on the rendered edges of a GraphQL connection instead of all the nodes in it.
* Fix a KeyError in GitlabSchemaNick Thomas2019-04-041-2/+12
|
* Merge branch '57831-allow-graphql-scalar-fields-to-be-authorized' into 'master'Nick Thomas2019-04-041-0/+53
|\ | | | | | | | | | | | | Allow GraphQL Scalar-fields to be authorized Closes #57831 See merge request gitlab-org/gitlab-ce!26338
| * Use parent object when authorizing scalar typesBrett Walker2019-04-041-0/+53
| |
* | Initial field and query complexity limits58405-basic-limiting-complexity-of-graphql-queriesBrett Walker2019-04-042-0/+51
|/ | | | | | | | It makes all Types::BaseField default to a complexity of 1. Queries themselves now have limited complexity, scaled to the type of user: no user, authenticated user, or an admin user.
* GraphQL Type authorizationLuke Duncalfe2019-04-037-68/+200
| | | | | | | | | | | | | | | | | | | Enables authorizations to be defined on GraphQL Types. module Types class ProjectType < BaseObject authorize :read_project end end If a field has authorizations defined on it, and the return type of the field also has authorizations defined on it. then all of the combined permissions in the authorizations will be checked and must pass. Connection fields are checked by "digging" to find the type class of the "node" field in the expected location of edges->node. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54417
* Extra permissions in Project & Issue GraphQLBob Van Landuyt2019-04-012-2/+6
| | | | | | | | | Allow extra permissions for the `Types::ProjectType` and `Types:IssueType` GraphQL types. As we'll be adding more permissions in CE. Now this spec only validates if all the expected permissions are present, but it will not fail if there are more.
* Add merge request popover with detailsSam Bigelow2019-03-211-0/+11
| | | | | | | | | - 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
* Apply suggestion to spec/graphql/types/query_type_spec.rbDouwe Maan2019-03-051-1/+1
|
* Add metadata about the GitLab server to GraphQLNick Thomas2019-03-053-1/+30
|