summaryrefslogtreecommitdiff
path: root/app/graphql
Commit message (Collapse)AuthorAgeFilesLines
* Remove code related to object hierarchy in MySQLremove-nested-groups-checksHeinrich Lee Yu2019-07-251-5/+3
| | | | | These are not required because MySQL is not supported anymore
* Added submodule links to Submodule type in GraphQL APIIgor2019-07-172-1/+6
| | | | This is part of migration of Folder View to Vue
* Include AuthorizeResource module for all mutationsgraphql-include-authorization-for-mutationsLuke Duncalfe2019-07-114-5/+1
| | | | | This makes our authorization calls available to all GraphQL mutations without the additional step of including the module first.
* GraphQL support for Notes created in discussions62826-graphql-note-mutationsLuke Duncalfe2019-07-103-0/+39
| | | | | | | | | | | | 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-104-9/+19
| | | | https://gitlab.com/gitlab-org/gitlab-ee/issues/9489
* GraphQL mutations for managing NotesLuke Duncalfe2019-07-1013-0/+302
| | | | https://gitlab.com/gitlab-org/gitlab-ce/issues/62826
* Address reviewer comments58409-increase-graphql-complexity-for-fields-that-make-gitaly-callscharlieablett2019-07-052-1/+6
| | | | | | - Remove Gitaly call check for fields that have a constant complexity declared - Add associated test
* Address reviewer commentscharlieablett2019-07-031-12/+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
* Wrap proc properly in gitaly call countscharlieablett2019-07-036-11/+10
| | | | | | - Add `calls_gitaly: true` to some fields missing (hey, it works!) - Clarify proc wrapping - Add kwargs argument to `mount_mutation`
* Alert if `calls_gitaly` declaration missingcharlieablett2019-07-032-10/+13
| | | | | | | - 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-2/+0
| | | | | - If Gitaly calls are missing, it could be due to a conditional and may just become noise
* Enumerate fields with Gitaly callscharlieablett2019-07-033-4/+25
| | | | | | - 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-0310-0/+230
|\
| * Merge branch 'graphql-tree-last-commit' into 'master'Lin Jen-Shin2019-06-282-0/+35
| |\ | | | | | | | | | | | | Added commit type to tree GraphQL type See merge request gitlab-org/gitlab-ce!29412
| | * Added commit type to tree GraphQL typePhil Hughes2019-06-282-0/+35
| | |
| * | GraphQL mutations for add, remove and toggle emoji62826-graphql-emoji-mutationsLuke Duncalfe2019-06-288-0/+195
| |/ | | | | | | | | | | | | | | | | | | | | | | 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
* | Enforce authorizations for non-nullable fieldsBob Van Landuyt2019-06-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Add authorize to LabelType and NamespaceTypeBob Van Landuyt2019-06-2114-5/+36
|/ | | | This also disables the cop with a reasoning in types where appropriate
* Render GFM html in GraphQLBob Van Landuyt2019-06-207-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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`.
* Merge branch '62910-task-completion-status-gql-pderichs' into 'master'Sean McGivern2019-06-173-0/+15
|\ | | | | | | | | | | | | Make task completion status available via GraphQL Closes #62910 See merge request gitlab-org/gitlab-ce!29573
| * Add task count and completed count to graphql types62910-task-completion-status-gql-pderichsPatrick Derichs2019-06-153-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add specs for task completion status (graphql) Fix style issues Changed format of constants in spec Refactor specs to reduce creation of records Reduce parameters to merge request creation Use set's for project and user Move let's out of it_behaves_like block Fix description parameter Fix format of lets Use dig to get task completion status out of graphql response Modified rspec output Add changelog entry
* | Do not blindly expose public project statisticsMayra Cabrera2019-06-142-1/+3
| | | | | | | | Add the missing check on GraphQL API for project statistics
* | Expose comments on Noteables in GraphQLBob Van Landuyt2019-06-149-2/+162
|/ | | | | | | | | 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`.
* Rename `BatchCommitLoader` to `BatchLfsOidLoader`Bob Van Landuyt2019-06-111-1/+1
| | | | | Since we're not actually loading commits in that loader, but we're loading blobs with LFS oids in batch and returning only the oids.
* Add LFS blob ID to GraphQL blob typePhil Hughes2019-06-101-0/+3
|
* Merge branch '62706-graphql-complexity-values-are-incorrectly-doubled' into ↵Jan Provaznik2019-06-061-6/+9
|\ | | | | | | | | | | | | | | | | 'master' Reduce GraphQL complexity for non-connection fields Closes #62706 See merge request gitlab-org/gitlab-ce!29165
| * Grab field_defn to access certain values62706-graphql-complexity-values-are-incorrectly-doubledBrett Walker2019-06-051-2/+4
| |
| * Use :complexity_multiplier only with connectionsBrett Walker2019-06-051-6/+7
| | | | | | | | This helps reduce complexity for non-connections
* | Merge branch 'graphql-file-entry-url' into 'master'Nick Thomas2019-06-053-2/+16
|\ \ | | | | | | | | | | | | 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-053-2/+16
| |/
* | Merge branch 'bvl-use-global-ids-graphql' into 'master'Jan Provaznik2019-06-057-7/+37
|\ \ | |/ |/| | | | | | | | | Use global IDs when exposing GraphQL resources Closes #62650 See merge request gitlab-org/gitlab-ce!29080
| * Fix incorrect instances of `GraphQL::ID_TYPE`Bob Van Landuyt2019-06-035-7/+7
| | | | | | | | | | | | | | | | | | | | | | Since the `GraphQL::ID_TYPE` usages should represent globally unique ids, this changes some fields for which this is not the case into strings. The `ID_TYPE` is a specialised, so this change should be backwards compatible. https://graphql-ruby.org/type_definitions/scalars.html
| * Expose IDs in GraphQL as a GlobalIDBob Van Landuyt2019-06-032-0/+30
| | | | | | | | | | | | | | | | | | | | 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-0/+1
|/
* Add Namespace and ProjectStatistics to GraphQL APIAlessio Caiazza2019-06-036-0/+75
| | | | | | 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-315-4/+10
| | | | | and allow passing of child_complexity to the 'resolver_complexity' metho
* Implement logger analyzercharlieablett2019-05-301-1/+1
| | | | | | | - Modify GraphqlLogger to subclass JsonLogger - Replace the single-line analyser with one that can log all the GraphQL query related information in one place. - Implement analyzer behavior with spec
* Enables GraphQL batch requestsPhil Hughes2019-05-281-2/+13
| | | | | | | | | 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-229-0/+113
|\ | | | | | | | | Added repository files to GraphQL API See merge request gitlab-org/gitlab-ce!28325
| * Added repository files to GraphQL APIPhil Hughes2019-05-229-0/+113
| |
* | Use BatchModelLoader for parent in GroupType62066-use-batchmodelloader-for-grouptypeBrett Walker2019-05-201-2/+4
| |
* | Fix typos in the whole gitlab-ce projectYoginth2019-05-201-1/+1
|/
* Merge branch '58404-set-default-max-depth-for-GraphQL' into 'master'Sean McGivern2019-05-081-12/+30
|\ | | | | | | | | | | | | 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-12/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-066-4/+76
|/ | | | | | | | | | | | | | | | | | 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).
* Add opentracing integration for graphqlJan Provaznik2019-05-021-1/+1
| | | | | | | Extends existing graphql's tracer with opentracing measurements. Because it also adds Tracing::Graphql class (for opentracing), it also renames Graphql::Tracing class to Graphql::GenericTracing to minimize confusion with similar class names.
* Merge branch 'bw-add-graphql-groups' into 'master'Grzegorz Bizon2019-04-307-3/+75
|\ | | | | | | | | | | | | Add basic GraphQL for a Group Closes #60786 See merge request gitlab-org/gitlab-ce!27492
| * Refactor group query specBrett Walker2019-04-231-4/+4
| | | | | | | | and removing unnecessary code
| * Basic GraphQL for a groupBrett Walker2019-04-237-3/+75
| | | | | | | | | | Add new query for Groups, with new GroupType and NamespaceType
* | Port changes for design management to CEBob Van Landuyt2019-04-291-0/+6
|/ | | | | | This ports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/ to CE