GraphQL Ruby Using NameSpaceHow to get a random number in RubyA concise explanation of nil v. empty v. blank in Ruby on RailsHow can I rename a database column in a Ruby on Rails migration?How do I get the current absolute URL in Ruby on Rails?How to use concerns in Rails 4Setting up ruby-graphql: UserType not foundProperly structuring a GraphQL API that wraps different REST endpointsGraphQL mutation structurecan't write unknown attribute `client_mutation_id`

Contract Employer Keeps Asking for Small Things Without Pay

Will replacing a fake visa with a different fake visa cause me problems when applying for a legal study permit?

C++ - using const reference to prolong a member of a temporary, ok or UB?

Are there any instances of members of different Hogwarts houses coupling up and marrying each other?

Why are some Mac apps not available on AppStore?

Do ibuprofen or paracetamol cause hearing loss?

How to easily add discontinuity on x-axis?

Can I say "I have encrypted something" if I hash something?

Should I use my toaster oven for slow roasting?

Job offer without any details but asking me to withdraw other applications - is it normal?

Does the wording of the Wrathful Smite spell imply that there are other living beings that aren't considered "creatures"?

A Little Riddle

Which currencies does Wizz Air use in-flight?

Babysitting dragons

Are Democrats more likely to believe Astrology is a science?

Did Picard get in trouble when he was in command of the Stargazer and lost his ship?

I asked for a graduate student position from a professor. He replied "welcome". What does that mean?

How to help my 2.5-year-old daughter take her medicine when she refuses to?

Why was "leaping into the river" a valid trial outcome to prove one's innocence?

Were Roman public roads build by private companies?

How to determine the traffic avoidance manuver?

Can I disable a battery powered device by reversing half of its batteries?

How do email clients "send later" without storing a password?

Was Robin Hood's point of view ethically sound?



GraphQL Ruby Using NameSpace


How to get a random number in RubyA concise explanation of nil v. empty v. blank in Ruby on RailsHow can I rename a database column in a Ruby on Rails migration?How do I get the current absolute URL in Ruby on Rails?How to use concerns in Rails 4Setting up ruby-graphql: UserType not foundProperly structuring a GraphQL API that wraps different REST endpointsGraphQL mutation structurecan't write unknown attribute `client_mutation_id`






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am using graphql-ruby in my rails application.
Currently, my app's directory structure looks like this.



app 
- controllers
- application_controller.rb
- graphql_controller.rb
- admin
- application_controller.rb
- graphql_controller.rb
- graphql
- types
- mutations
- graphql_schema.rb


I am trying to make a simple admin page but I'm not sure how I should hanlde namespaces with graphql-ruby.



Should I make Admin directory under graphql as well and make types and mutations under it for the data I want to use on the admin page??



Also, should I make another endpoint for Admin like the code below??



Rails.application.routes.draw do
namespace :admin do
post :graphql, to: 'graphql#execute'
end
post :graphql, to: 'graphql#execute'
end


Can you possibly give me the link of a project that does what I am trying to do with graphql-ruby??? That would be a tremendous help.










share|improve this question
































    1















    I am using graphql-ruby in my rails application.
    Currently, my app's directory structure looks like this.



    app 
    - controllers
    - application_controller.rb
    - graphql_controller.rb
    - admin
    - application_controller.rb
    - graphql_controller.rb
    - graphql
    - types
    - mutations
    - graphql_schema.rb


    I am trying to make a simple admin page but I'm not sure how I should hanlde namespaces with graphql-ruby.



    Should I make Admin directory under graphql as well and make types and mutations under it for the data I want to use on the admin page??



    Also, should I make another endpoint for Admin like the code below??



    Rails.application.routes.draw do
    namespace :admin do
    post :graphql, to: 'graphql#execute'
    end
    post :graphql, to: 'graphql#execute'
    end


    Can you possibly give me the link of a project that does what I am trying to do with graphql-ruby??? That would be a tremendous help.










    share|improve this question




























      1












      1








      1


      1






      I am using graphql-ruby in my rails application.
      Currently, my app's directory structure looks like this.



      app 
      - controllers
      - application_controller.rb
      - graphql_controller.rb
      - admin
      - application_controller.rb
      - graphql_controller.rb
      - graphql
      - types
      - mutations
      - graphql_schema.rb


      I am trying to make a simple admin page but I'm not sure how I should hanlde namespaces with graphql-ruby.



      Should I make Admin directory under graphql as well and make types and mutations under it for the data I want to use on the admin page??



      Also, should I make another endpoint for Admin like the code below??



      Rails.application.routes.draw do
      namespace :admin do
      post :graphql, to: 'graphql#execute'
      end
      post :graphql, to: 'graphql#execute'
      end


      Can you possibly give me the link of a project that does what I am trying to do with graphql-ruby??? That would be a tremendous help.










      share|improve this question
















      I am using graphql-ruby in my rails application.
      Currently, my app's directory structure looks like this.



      app 
      - controllers
      - application_controller.rb
      - graphql_controller.rb
      - admin
      - application_controller.rb
      - graphql_controller.rb
      - graphql
      - types
      - mutations
      - graphql_schema.rb


      I am trying to make a simple admin page but I'm not sure how I should hanlde namespaces with graphql-ruby.



      Should I make Admin directory under graphql as well and make types and mutations under it for the data I want to use on the admin page??



      Also, should I make another endpoint for Admin like the code below??



      Rails.application.routes.draw do
      namespace :admin do
      post :graphql, to: 'graphql#execute'
      end
      post :graphql, to: 'graphql#execute'
      end


      Can you possibly give me the link of a project that does what I am trying to do with graphql-ruby??? That would be a tremendous help.







      ruby-on-rails graphql graphql-ruby






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 28 at 9:24







      K-Sato

















      asked Mar 28 at 8:43









      K-SatoK-Sato

      631 silver badge15 bronze badges




      631 silver badge15 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1
















          From https://graphql.org/




          GraphQL APIs are organized in terms of types and fields, not endpoints. Access the full capabilities of your data from a single endpoint.




          Hence, creating two endpoints as you have suggested would go against that principle. You probably shouldn't do it, but most importantly, there's no need to.



          Suppose you have a type ProductType with a couple of fields. You can use that same type to both query/display the product data in your website and edit it with a mutation in the admin page. Granted, you may have to deal with authorizing some specific queries and mutations, but it shouldn't be any harder than dealing with authorization in REST.



          See more about GraphQL authorization in Ruby.






          share|improve this answer

























          • Thank you for your advice and the links!

            – K-Sato
            Apr 1 at 0:23










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393289%2fgraphql-ruby-using-namespace%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1
















          From https://graphql.org/




          GraphQL APIs are organized in terms of types and fields, not endpoints. Access the full capabilities of your data from a single endpoint.




          Hence, creating two endpoints as you have suggested would go against that principle. You probably shouldn't do it, but most importantly, there's no need to.



          Suppose you have a type ProductType with a couple of fields. You can use that same type to both query/display the product data in your website and edit it with a mutation in the admin page. Granted, you may have to deal with authorizing some specific queries and mutations, but it shouldn't be any harder than dealing with authorization in REST.



          See more about GraphQL authorization in Ruby.






          share|improve this answer

























          • Thank you for your advice and the links!

            – K-Sato
            Apr 1 at 0:23















          1
















          From https://graphql.org/




          GraphQL APIs are organized in terms of types and fields, not endpoints. Access the full capabilities of your data from a single endpoint.




          Hence, creating two endpoints as you have suggested would go against that principle. You probably shouldn't do it, but most importantly, there's no need to.



          Suppose you have a type ProductType with a couple of fields. You can use that same type to both query/display the product data in your website and edit it with a mutation in the admin page. Granted, you may have to deal with authorizing some specific queries and mutations, but it shouldn't be any harder than dealing with authorization in REST.



          See more about GraphQL authorization in Ruby.






          share|improve this answer

























          • Thank you for your advice and the links!

            – K-Sato
            Apr 1 at 0:23













          1














          1










          1









          From https://graphql.org/




          GraphQL APIs are organized in terms of types and fields, not endpoints. Access the full capabilities of your data from a single endpoint.




          Hence, creating two endpoints as you have suggested would go against that principle. You probably shouldn't do it, but most importantly, there's no need to.



          Suppose you have a type ProductType with a couple of fields. You can use that same type to both query/display the product data in your website and edit it with a mutation in the admin page. Granted, you may have to deal with authorizing some specific queries and mutations, but it shouldn't be any harder than dealing with authorization in REST.



          See more about GraphQL authorization in Ruby.






          share|improve this answer













          From https://graphql.org/




          GraphQL APIs are organized in terms of types and fields, not endpoints. Access the full capabilities of your data from a single endpoint.




          Hence, creating two endpoints as you have suggested would go against that principle. You probably shouldn't do it, but most importantly, there's no need to.



          Suppose you have a type ProductType with a couple of fields. You can use that same type to both query/display the product data in your website and edit it with a mutation in the admin page. Granted, you may have to deal with authorizing some specific queries and mutations, but it shouldn't be any harder than dealing with authorization in REST.



          See more about GraphQL authorization in Ruby.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 29 at 3:33









          VitorVitor

          462 bronze badges




          462 bronze badges















          • Thank you for your advice and the links!

            – K-Sato
            Apr 1 at 0:23

















          • Thank you for your advice and the links!

            – K-Sato
            Apr 1 at 0:23
















          Thank you for your advice and the links!

          – K-Sato
          Apr 1 at 0:23





          Thank you for your advice and the links!

          – K-Sato
          Apr 1 at 0:23








          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







          Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393289%2fgraphql-ruby-using-namespace%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴