<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/spec/graphql/resolvers, branch docs-pages-force-https</title>
<subtitle>gitlab.com: gitlab-org/gitlab-ce.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/'/>
<entry>
<title>Use :complexity_multiplier only with connections</title>
<updated>2019-06-05T15:17:54+00:00</updated>
<author>
<name>Brett Walker</name>
<email>bwalker@gitlab.com</email>
</author>
<published>2019-06-04T22:52:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=95b3fe286349176be7f117211dcc0ffa9dfcb8bb'/>
<id>95b3fe286349176be7f117211dcc0ffa9dfcb8bb</id>
<content type='text'>
This helps reduce complexity for non-connections
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This helps reduce complexity for non-connections
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Namespace and ProjectStatistics to GraphQL API</title>
<updated>2019-06-03T10:01:32+00:00</updated>
<author>
<name>Alessio Caiazza</name>
<email>acaiazza@gitlab.com</email>
</author>
<published>2019-05-12T21:10:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=83a8b779615c968af5afe15a1cbc6903d639f265'/>
<id>83a8b779615c968af5afe15a1cbc6903d639f265</id>
<content type='text'>
We can query namespaces, and nested projects.

Projects now exposes statistics
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can query namespaces, and nested projects.

Projects now exposes statistics
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'graphql-tree' into 'master'</title>
<updated>2019-05-22T15:06:03+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-05-22T15:06:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=454cbac3ef1b72ad8f9f70aecc7e8e9b9aba3f7a'/>
<id>454cbac3ef1b72ad8f9f70aecc7e8e9b9aba3f7a</id>
<content type='text'>
Added repository files to GraphQL API

See merge request gitlab-org/gitlab-ce!28325</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added repository files to GraphQL API

See merge request gitlab-org/gitlab-ce!28325</pre>
</div>
</content>
</entry>
<entry>
<title>Added repository files to GraphQL API</title>
<updated>2019-05-22T11:43:35+00:00</updated>
<author>
<name>Phil Hughes</name>
<email>me@iamphill.com</email>
</author>
<published>2019-05-22T11:43:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=67a50861953be9347e267795a9ce736dfea5316b'/>
<id>67a50861953be9347e267795a9ce736dfea5316b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use BatchModelLoader for parent in GroupType</title>
<updated>2019-05-20T22:23:11+00:00</updated>
<author>
<name>Brett Walker</name>
<email>bwalker@gitlab.com</email>
</author>
<published>2019-05-20T21:19:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=0f14b628c4e9624c42e783c0e6620e8b00073ab6'/>
<id>0f14b628c4e9624c42e783c0e6620e8b00073ab6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GraphQL - Add extra complexity for resolvers</title>
<updated>2019-05-06T21:24:19+00:00</updated>
<author>
<name>Jan Provaznik</name>
<email>jprovaznik@gitlab.com</email>
</author>
<published>2019-05-06T21:24:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5ee7884d91c4513e1b7322a4ca30a2c908e931b8'/>
<id>5ee7884d91c4513e1b7322a4ca30a2c908e931b8</id>
<content type='text'>
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).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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).
</pre>
</div>
</content>
</entry>
<entry>
<title>Port changes for design management to CE</title>
<updated>2019-04-29T06:28:43+00:00</updated>
<author>
<name>Bob Van Landuyt</name>
<email>bob@vanlanduyt.co</email>
</author>
<published>2019-04-22T16:07:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=33cf8edae170890ccd4510490f1dcd2f345c81fa'/>
<id>33cf8edae170890ccd4510490f1dcd2f345c81fa</id>
<content type='text'>
This ports the changes from
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/
to CE
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This ports the changes from
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10462/
to CE
</pre>
</div>
</content>
</entry>
<entry>
<title>Add metadata about the GitLab server to GraphQL</title>
<updated>2019-03-05T15:00:32+00:00</updated>
<author>
<name>Nick Thomas</name>
<email>nick@gitlab.com</email>
</author>
<published>2019-01-24T16:23:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=21779d00186d75349165d6c07dbe04aace68017c'/>
<id>21779d00186d75349165d6c07dbe04aace68017c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add GraphQL filters for issuables (state, labels, time fields)</title>
<updated>2019-02-21T08:40:49+00:00</updated>
<author>
<name>Rémy Coutable</name>
<email>remy@rymai.me</email>
</author>
<published>2019-01-17T17:49:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=87dfe5a27a51c722bbeaa4582168f1277a0df034'/>
<id>87dfe5a27a51c722bbeaa4582168f1277a0df034</id>
<content type='text'>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rémy Coutable &lt;remy@rymai.me&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement singular iid for IssuesResolver and ProjectType</title>
<updated>2019-02-14T07:52:17+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2019-02-12T16:31:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=30918929ad079a591b85303d6662ec0a43c5df04'/>
<id>30918929ad079a591b85303d6662ec0a43c5df04</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
