-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: Basic GraphQL support (#328)
* added graphql examples * show graphql query names. * added variables * Revert "added variables" This reverts commit 4e53181. * better icon * renamed function * fixed ktlint and detekt issues. * display variables and details * fixed graphql search * removed graphql error handling * detect json by mediaType * fixed no-op
- Loading branch information
Showing
13 changed files
with
287 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
pluto-plugins/plugins/network/core/lib/src/main/res/drawable/pluto_network___ic_graphql.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="400" | ||
android:viewportHeight="400"> | ||
<path | ||
android:pathData="M57.47,302.66l-14.38,-8.3l160.15,-277.38l14.38,8.3z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M39.8,272.2h320.3v16.6h-320.3z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M206.35,374.03l-160.21,-92.5l8.3,-14.38l160.21,92.5z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M345.52,132.95l-160.21,-92.5l8.3,-14.38l160.21,92.5z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M54.48,132.88l-8.3,-14.38l160.21,-92.5l8.3,14.38z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M342.57,302.66l-160.15,-277.38l14.38,-8.3l160.15,277.38z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M52.5,107.5h16.6v185h-16.6z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M330.9,107.5h16.6v185h-16.6z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M203.52,367l-7.25,-12.56l139.34,-80.45l7.25,12.56z" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M369.5,297.9c-9.6,16.7 -31,22.4 -47.7,12.8c-16.7,-9.6 -22.4,-31 -12.8,-47.7c9.6,-16.7 31,-22.4 47.7,-12.8C373.5,259.9 379.2,281.2 369.5,297.9" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M90.9,137c-9.6,16.7 -31,22.4 -47.7,12.8c-16.7,-9.6 -22.4,-31 -12.8,-47.7c9.6,-16.7 31,-22.4 47.7,-12.8C94.8,99 100.5,120.3 90.9,137" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M30.5,297.9c-9.6,-16.7 -3.9,-38 12.8,-47.7c16.7,-9.6 38,-3.9 47.7,12.8c9.6,16.7 3.9,38 -12.8,47.7C61.4,320.3 40.1,314.6 30.5,297.9" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M309.1,137c-9.6,-16.7 -3.9,-38 12.8,-47.7c16.7,-9.6 38,-3.9 47.7,12.8c9.6,16.7 3.9,38 -12.8,47.7C340.1,159.4 318.7,153.7 309.1,137" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M200,395.8c-19.3,0 -34.9,-15.6 -34.9,-34.9c0,-19.3 15.6,-34.9 34.9,-34.9c19.3,0 34.9,15.6 34.9,34.9C234.9,380.1 219.3,395.8 200,395.8" | ||
android:fillColor="#E535AB"/> | ||
<path | ||
android:pathData="M200,74c-19.3,0 -34.9,-15.6 -34.9,-34.9c0,-19.3 15.6,-34.9 34.9,-34.9c19.3,0 34.9,15.6 34.9,34.9C234.9,58.4 219.3,74 200,74" | ||
android:fillColor="#E535AB"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.