Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

refactor(create): rm digest GQ arg when create/update#419

Merged
mydearxym merged 2 commits intodevfromclean-up-digest-arg
Jun 26, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/blog.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Blog do
field :create_blog, :blog do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:link_addr, :string)
arg(:thread, :thread, default_value: :blog)
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/drink.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Drink do
field :create_drink, :drink do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:thread, :thread, default_value: :drink)
arg(:article_tags, list_of(:id))
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/guide.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Guide do
field :create_guide, :guide do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:thread, :thread, default_value: :guide)
arg(:article_tags, list_of(:id))
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/job.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -12,7 +12,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Job do
arg(:company, non_null(:string))
arg(:company_link, :string)
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))

arg(:desc, :string)
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/meetup.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Meetup do
field :create_meetup, :meetup do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:thread, :thread, default_value: :meetup)
arg(:article_tags, list_of(:id))
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/post.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,7 +11,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Post do
field :create_post, :post do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:link_addr, :string)
arg(:copy_right, :string)
arg(:community_id, non_null(:id))
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/radar.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Radar do
field :create_radar, :radar do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:thread, :thread, default_value: :radar)
arg(:article_tags, list_of(:id))
Expand Down
1 change: 0 additions & 1 deletionlib/groupher_server_web/schema/cms/mutations/works.ex
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,6 @@ defmodule GroupherServerWeb.Schema.CMS.Mutations.Works do
field :create_works, :works do
arg(:title, non_null(:string))
arg(:body, non_null(:string))
arg(:digest, non_null(:string))
arg(:community_id, non_null(:id))
arg(:thread, :thread, default_value: :works)
arg(:article_tags, list_of(:id))
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Blog do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createBlog(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Drink do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createDrink(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Guide do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createGuide(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,15 +25,13 @@ defmodule GroupherServer.Test.Mutation.Articles.Job do
mutation (
$title: String!,
$body: String!,
$digest: String!,
$communityId: ID!,
$company: String!,
$articleTags: [Id]
) {
createJob(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
company: $company,
articleTags: $articleTags
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Meetup do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createMeetup(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Post do
mutation(
$title: String!
$body: String!
$digest: String!
$communityId: ID!
$articleTags: [Id]
) {
createPost(
title: $title
body: $body
digest: $digest
communityId: $communityId
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Radar do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createRadar(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,14 +25,12 @@ defmodule GroupherServer.Test.Mutation.Articles.Works do
mutation (
$title: String!,
$body: String,
$digest: String!,
$communityId: ID!,
$articleTags: [Id]
) {
createWorks(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,13 +23,11 @@ defmodule GroupherServer.Test.Mutation.PublishThrottle do
mutation(
$title: String!
$body: String!
$digest: String!
$communityId: ID!
) {
createPost(
title: $title
body: $body
digest: $digest
communityId: $communityId
) {
title
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,14 +21,12 @@ defmodule GroupherServer.Test.Mutation.Statistics do
mutation(
$title: String!
$body: String!
$digest: String!
$communityId: ID!
$articleTags: [Ids]
) {
createPost(
title: $title
body: $body
digest: $digest
communityId: $communityId
articleTags: $articleTags
) {
Expand DownExpand Up@@ -62,15 +60,13 @@ defmodule GroupherServer.Test.Mutation.Statistics do
mutation (
$title: String!,
$body: String!,
$digest: String!,
$communityId: ID!,
$company: String!,
$articleTags: [Ids]
) {
createJob(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
company: $company,
articleTags: $articleTags
Expand DownExpand Up@@ -98,14 +94,12 @@ defmodule GroupherServer.Test.Mutation.Statistics do
mutation (
$title: String!,
$body: String!,
$digest: String!,
$communityId: ID!,
$articleTags: [Ids]
) {
createBlog(
title: $title,
body: $body,
digest: $digest,
communityId: $communityId,
articleTags: $articleTags
) {
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp