Skip to content

Commit

Permalink
Merge branch '564-project-management-links' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenjohnson committed Feb 3, 2023
2 parents 13520dd + 3516815 commit 4e7ce5f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/graphql/mutations/createPostMutation.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default
$details: String,
$linkPreviewId: String,
$linkPreviewFeatured: Boolean,
$groupIds: [String],
$groupIds: [ID],
$imageUrls: [String],
$fileUrls: [String],
$announcement: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/mutations/updatePostMutation.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default
$details: String,
$linkPreviewId: String,
$linkPreviewFeatured: Boolean,
$groupIds: [String],
$groupIds: [ID],
$imageUrls: [String],
$fileUrls: [String],
$topicNames: [String],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exports[`createPost should match the last snapshot 1`] = `
$type: String
$title: String
$details: String
$groupIds: [String]
$groupIds: [ID]
$startTime: Date
$endTime: Date
$location: String
Expand Down Expand Up @@ -185,7 +185,7 @@ exports[`createProject should match the last snapshot 1`] = `
$type: String
$title: String
$details: String
$groupIds: [String]
$groupIds: [ID]
$startTime: Date
$endTime: Date
$location: String
Expand Down Expand Up @@ -367,7 +367,7 @@ exports[`updatePost should match the last snapshot 1`] = `
$type: String
$title: String
$details: String
$groupIds: [String]
$groupIds: [ID]
$startTime: Date
$endTime: Date
$location: String
Expand Down
2 changes: 1 addition & 1 deletion src/store/actions/createProject.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function createProject (postParams) {
$title: String
$details: String
$linkPreviewId: String
$groupIds: [String]
$groupIds: [ID]
$imageUrls: [String]
$fileUrls: [String]
$announcement: Boolean
Expand Down
2 changes: 1 addition & 1 deletion src/store/actions/findMentions.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function findMentions ({ autocomplete, groupIds, maxItems = 5 })
type: FIND_MENTIONS,
graphql: {
query: gql`
query FindPeopleForMentions ($autocomplete: String, $groupIds: [String], $maxItems: Int) {
query FindPeopleForMentions ($autocomplete: String, $groupIds: [ID], $maxItems: Int) {
people(autocomplete: $autocomplete, first: $maxItems, groupIds: $groupIds) {
items {
id
Expand Down

0 comments on commit 4e7ce5f

Please sign in to comment.