<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/gitlab/gitlab-ce.git/app/graphql/resolvers, branch docs/fix-commit-api-render</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>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>Use a block and move setup to example directly</title>
<updated>2019-02-14T14:57:34+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2019-02-14T14:57:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=f80f6bbcdc7f18d9154604602f3750abb0292020'/>
<id>f80f6bbcdc7f18d9154604602f3750abb0292020</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>
<entry>
<title>Add field mergeRequests for project in GraphQL</title>
<updated>2019-02-14T07:52:17+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2019-01-30T19:00:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=91e9e50a1153021257abaa528498d7a82cc3350f'/>
<id>91e9e50a1153021257abaa528498d7a82cc3350f</id>
<content type='text'>
And fix the tests so that it won't run into circular paths.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And fix the tests so that it won't run into circular paths.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add argument iids to IssuesResolver</title>
<updated>2019-02-01T15:55:44+00:00</updated>
<author>
<name>Lin Jen-Shin</name>
<email>godfat@godfat.org</email>
</author>
<published>2019-01-30T17:18:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=ee60128cefae3122f21987b72c60a268ddc8f6b9'/>
<id>ee60128cefae3122f21987b72c60a268ddc8f6b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Suggests issues when typing title</title>
<updated>2018-11-27T15:10:40+00:00</updated>
<author>
<name>Phil Hughes</name>
<email>me@iamphill.com</email>
</author>
<published>2018-11-27T15:10:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=50e21a89a0009813b9f090288b22c64c5cefbd58'/>
<id>50e21a89a0009813b9f090288b22c64c5cefbd58</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Batch load only data from same repository when lazy object is accessed</title>
<updated>2018-11-26T10:15:18+00:00</updated>
<author>
<name>Douwe Maan</name>
<email>douwe@selenight.nl</email>
</author>
<published>2018-11-23T11:26:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=5f0e4040ce7d4d0019b3340dd603cc6f67dd036d'/>
<id>5f0e4040ce7d4d0019b3340dd603cc6f67dd036d</id>
<content type='text'>
By specifying `key`, we get a different lazy batch loader for each
repository, which means that accessing a lazy object from one repository
will only result in that repository's objects being fetched, not those
of other repositories, saving us some unnecessary Gitaly lookups.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By specifying `key`, we get a different lazy batch loader for each
repository, which means that accessing a lazy object from one repository
will only result in that repository's objects being fetched, not those
of other repositories, saving us some unnecessary Gitaly lookups.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'frozen-string-app-finders-graphql' into 'master'</title>
<updated>2018-09-13T19:44:31+00:00</updated>
<author>
<name>Stan Hu</name>
<email>stanhu@gmail.com</email>
</author>
<published>2018-09-13T19:44:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=32b96bfd81ff254142dbd9c73e1a494308213cb3'/>
<id>32b96bfd81ff254142dbd9c73e1a494308213cb3</id>
<content type='text'>
Enable frozen string in app/graphql + app/finders

See merge request gitlab-org/gitlab-ce!21681</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable frozen string in app/graphql + app/finders

See merge request gitlab-org/gitlab-ce!21681</pre>
</div>
</content>
</entry>
<entry>
<title>Enable frozen string in app/graphql + app/finders</title>
<updated>2018-09-11T19:15:23+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2018-09-11T19:08:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/gitlab/gitlab-ce.git/commit/?id=47b3038434f50f216b6a9b9d0ed05ac5ff586625'/>
<id>47b3038434f50f216b6a9b9d0ed05ac5ff586625</id>
<content type='text'>
Partially addresses #47424.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Partially addresses #47424.
</pre>
</div>
</content>
</entry>
</feed>
