<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: eprince1</title>
    <description>The latest articles on DEV Community by eprince1 (@eprince1).</description>
    <link>https://dev.to/eprince1</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F226879%2Fdf767634-fd09-4003-b137-b12951a1c7b8.png</url>
      <title>DEV Community: eprince1</title>
      <link>https://dev.to/eprince1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eprince1"/>
    <language>en</language>
    <item>
      <title>Instantly generate GraphQL documentation with doQLize.</title>
      <dc:creator>eprince1</dc:creator>
      <pubDate>Mon, 03 Apr 2023 18:40:33 +0000</pubDate>
      <link>https://dev.to/eprince1/instantly-generate-graphql-documentation-with-doqlize-268h</link>
      <guid>https://dev.to/eprince1/instantly-generate-graphql-documentation-with-doqlize-268h</guid>
      <description>&lt;p&gt;GraphQL is quickly becoming one of the most popular query languages for APIs due to its flexibility and efficiency. However, documenting GraphQL APIs can be a tedious and time-consuming process. That's where &lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt; comes in.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2S2YA4OO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t8m1e9pr5alx4ln6qldm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2S2YA4OO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/t8m1e9pr5alx4ln6qldm.png" alt="doqlize api example" width="880" height="470"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt; is a SaaS tool that instantly generates readable GraphQL documentation. With &lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt;, developers can create accurate and up-to-date documentation for their GraphQL APIs without any manual work.&lt;/p&gt;

&lt;p&gt;The tool works by analyzing the GraphQL schema and generating detailed documentation that is easy to read and understand. It provides a clear and concise overview of the available queries, mutations, subscriptions, and types. In addition, &lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt; also generates examples of how to use each query, mutation, and subscription, making it easier for developers to integrate their APIs.&lt;/p&gt;

&lt;p&gt;One of the biggest advantages of &lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt; is its ability to organize your documentation similar to how a REST API would be documented. Instead of organizing by query, mutation, and subscription, &lt;a href="https://www.doqlize.com"&gt;doQLize&lt;/a&gt; organizes by action and categories so that developers can easily understand your API.&lt;/p&gt;

&lt;p&gt;Some upcoming features include&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fully custom domains&lt;/li&gt;
&lt;li&gt;Hide/Show specific graphql sections&lt;/li&gt;
&lt;li&gt;CI/CD pipeline&lt;/li&gt;
&lt;li&gt;Viewing metrics and insights&lt;/li&gt;
&lt;li&gt;Custom branding&lt;/li&gt;
&lt;li&gt;"Search Everything"&lt;/li&gt;
&lt;li&gt;No api size limit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With doQLize, developers can save time and focus on what really matters - building great products.&lt;/p&gt;

&lt;p&gt;doQLize is currently in its MVP state and is free to use. We are looking for interest and feedback and hope you give it a try!&lt;/p&gt;

</description>
      <category>graphql</category>
      <category>webdev</category>
      <category>devops</category>
      <category>saas</category>
    </item>
    <item>
      <title>Manage Pull Requests with Mergefly</title>
      <dc:creator>eprince1</dc:creator>
      <pubDate>Wed, 11 Sep 2019 22:00:34 +0000</pubDate>
      <link>https://dev.to/eprince1/manage-pull-requests-with-mergefly-39oa</link>
      <guid>https://dev.to/eprince1/manage-pull-requests-with-mergefly-39oa</guid>
      <description>&lt;h3&gt;
  
  
  &lt;strong&gt;My Frustrations With Pull Requests&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;I am going to argue that pull requests are the most important part of the development life-cycle. It is the only chance I get to see and comment on the code my fellow developers are writing. It is when design decisions are finalized, edge cases are discovered and code quality is enforced by you and your teammates. But, as vital as pull requests are for keeping a team's code solid, I often found myself frustrated by how limiting the tools are.&lt;/p&gt;

&lt;p&gt;A few examples include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Only the immediate lines surrounding code changes are provided which is often not enough context&lt;/li&gt;
&lt;li&gt;Comments break up the lines of code making changes very difficult to read&lt;/li&gt;
&lt;li&gt;Files are displayed as a giant list which makes it hard to find the one I am looking for&lt;/li&gt;
&lt;li&gt;I have to reload the page in order to load updates to the review&lt;/li&gt;
&lt;li&gt;In general the UI is messy and confusing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I have heard my teammates complain that they "dont trust code reviews because they are not able to see the whole picture.” But, I have always felt that this wouldn’t be a problem with a good user interface.&lt;/p&gt;

&lt;p&gt;My brother and I took it upon ourselves to tackle this problem. Being developers ourselves, we knew the pain points and we set out to create a tool that we would be excited to use every day. We focused on providing the most amount of context surrounding code changes with a UI that resembled an IDE.&lt;/p&gt;

&lt;p&gt;One year later, we are proud to present to you our solution: Mergefly.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=mI_R35AnXAk&amp;amp;t"&gt;Mergefly Promotion Video&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Comments&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Comments are completely revamped.&lt;/strong&gt; On GitHub, comments are built into the location of the code. This interrupts the flow of reading code because once you have multiple comments, the code is completely broken up. The comments themselves are also not searchable making it difficult for me to find specific comments I had already left.&lt;/p&gt;

&lt;p&gt;We fixed this by pulling the comments out of the code itself. You can now view comments in a modal you can drag around or on the side of the page. You can also jump directly to the code based off of a comment to review pull requests faster.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5P5-W_Js--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/10jr613cwu06ww2b9x6u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5P5-W_Js--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/10jr613cwu06ww2b9x6u.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h5&gt;
  
  
  &lt;strong&gt;Highlights&lt;/strong&gt;
&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;View comments either in an adjustable modal or off to the side&lt;/li&gt;
&lt;li&gt;Jump directly to specific code locations from a comment&lt;/li&gt;
&lt;li&gt;Comments are updated live&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Navigation&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Navigation is seamless.&lt;/strong&gt; Many times I found myself searching GitHub longer than I had to in order to accomplish simple tasks. This included searching for files, leaving reviews, opening repositories, filtering pull requests, and even merging. It was also frustrating to me how easily I could lose my place when I would update the page and GitHub automatically scrolled to the top.&lt;/p&gt;

&lt;p&gt;We designed Mergefly with all of these problems in mind. We can have multiple tabs on a single page so that you can switch between multiple reviews without losing your place. We have a file tree so you can see the hierarchy much more clearly. Lastly, pages auto update so you never have to refresh when changes occur in your repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---u9uqPDs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ouqclg6dwcwuhb3vb7vy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---u9uqPDs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/ouqclg6dwcwuhb3vb7vy.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--e2EyX8_q--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/hg3osxqaw373i33g4n59.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--e2EyX8_q--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/hg3osxqaw373i33g4n59.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h5&gt;
  
  
  &lt;strong&gt;Highlights&lt;/strong&gt;
&lt;/h5&gt;

&lt;ul&gt;
&lt;li&gt;Get to any repository or Pull Request without a page reload&lt;/li&gt;
&lt;li&gt;Switch between files, repositories, and Pull Requests instantly on the same page with multiple tabs&lt;/li&gt;
&lt;li&gt;Send your URL to a friend and they will open up to the same file and line you were looking at&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Reviews&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;We gave reviews more meaning. I felt that GitHub reviews were under utilized and a little out of place. They have this odd status of a comment but you can’t reply to them so they get lost in the conversation feed. As a result I never understood the proper way to use them.&lt;/p&gt;

&lt;p&gt;We decided to turn reviews into a chat like system. This creates better notifications and more context for members looking at a pull requests. It also creates a location to discuss pull requests as a whole instead of specific lines of code.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZB7skpWa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/nw6vdp0siumpikgyipwn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZB7skpWa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/nw6vdp0siumpikgyipwn.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Highlights&lt;/strong&gt;
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Reviews are kept in one place instead of scattered over the conversation history&lt;/li&gt;
&lt;li&gt;Reviews are faster and behave almost like a messaging app&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;More Features&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;This is really only scratching the surface. If you want to get a full picture of what Mergefly can do, check out all of our awesome features &lt;a href="https://mergefly.com/features"&gt;here&lt;/a&gt;!&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Free to the Open Source Community&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;We made Mergefly to give developers more confidence when merging code. We want to reduce bugs and make the development life-cycle smoother for everyone.&lt;/p&gt;

&lt;p&gt;Check us out at &lt;a href="https://mergefly.com"&gt;mergefly.com&lt;/a&gt;!&lt;/p&gt;

</description>
      <category>github</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
