Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gdd-sigma-poc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guillaume WANG
gdd-sigma-poc
Commits
1f03ff14
Commit
1f03ff14
authored
6 years ago
by
Anatole ROMON
Browse files
Options
Downloads
Patches
Plain Diff
new message tables
parent
b27bd21a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
db/migrations/20180415160405_message_types.js
+39
-0
39 additions, 0 deletions
db/migrations/20180415160405_message_types.js
src/graphql/typeDefs/actions.js
+0
-3
0 additions, 3 deletions
src/graphql/typeDefs/actions.js
src/graphql/typeDefs/objects.js
+48
-12
48 additions, 12 deletions
src/graphql/typeDefs/objects.js
with
87 additions
and
15 deletions
db/migrations/20180415160405_message_types.js
0 → 100644
+
39
−
0
View file @
1f03ff14
exports
.
up
=
async
function
(
knex
,
Promise
)
{
await
knex
.
schema
.
dropTable
(
'
posts
'
);
await
knex
.
schema
.
table
(
'
messages
'
,
function
(
table
){
table
.
dropColumn
(
'
authors
'
);
});
await
knex
.
schema
.
createTable
(
'
private_post
'
,
function
(
table
){
table
.
inherits
(
'
messages
'
);
table
.
string
(
'
author_uid
'
,
128
).
notNullable
();
table
.
enum
(
'
author_db
'
,
[
'
ldap
'
]).
notNullable
().
defaultTo
(
'
ldap
'
);
table
.
string
(
'
recipient_uid
'
,
128
).
notNullable
();
});
await
knex
.
schema
.
createTable
(
'
question
'
,
function
(
table
){
table
.
inherits
(
'
messages
'
);
table
.
string
(
'
author_uid
'
,
128
).
notNullable
();
table
.
enum
(
'
author_db
'
,
[
'
ldap
'
]).
notNullable
().
defaultTo
(
'
ldap
'
);
table
.
string
(
'
recipient_uid
'
,
128
).
notNullable
();
});
await
knex
.
schema
.
createTable
(
'
answer
'
,
function
(
table
){
table
.
inherits
(
'
messages
'
);
table
.
string
(
'
author_uid
'
,
128
).
notNullable
();
table
.
string
(
'
recipient_uid
'
,
128
).
notNullable
();
table
.
string
(
'
for_question
'
,
128
).
notNullable
();
});
return
;
};
exports
.
down
=
async
function
(
knex
,
Promise
)
{
await
knex
.
schema
.
dropTable
(
'
answer
'
);
await
knex
.
schema
.
dropTable
(
'
question
'
);
await
knex
.
schema
.
dropTable
(
'
private_post
'
);
await
knex
.
schema
.
table
(
'
messages
'
,
function
(
table
){
table
.
specificType
(
'
authors
'
,
knex
.
raw
(
'
varchar(128)[]
'
));
});
await
knex
.
schema
.
createTable
(
'
posts
'
,
function
(
table
)
{
table
.
inherits
(
'
messages
'
);
});
return
;
};
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs/actions.js
+
0
−
3
View file @
1f03ff14
...
...
@@ -15,8 +15,6 @@ const RootTypes = `
allMessages: [Message]
message(id: ID!): Message
allPosts: [Post]
post(id: ID!): Post
allEvents: [Event]
allAnnouncements: [Announcement]
...
...
@@ -198,7 +196,6 @@ const subQueries = `
type MessageQuery{
allMessages: [Message]
allEvents: [Event]
allPosts: [Post]
message(id: ID): Message
allAnnouncements: [Announcement]
}
...
...
This diff is collapsed.
Click to expand it.
src/graphql/typeDefs/objects.js
+
48
−
12
View file @
1f03ff14
...
...
@@ -120,18 +120,6 @@ const Message = `
recipient: Recipient
}
# Publication postée par un ou plusieurs groupes.
type Post implements Message {
id: ID!
title: String!
createdAt: String!
updatedAt: String!
content: String!
authors: Author
recipient: Recipient
}
# Annonce publique effectuée par un ou plusieurs groupes.
type Announcement implements Message {
id: ID!
...
...
@@ -168,6 +156,54 @@ const Message = `
authors: Author
recipient: Recipient
}
# Post interne d'un membre sur la page interne de son groupe
type PrivatePost implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: User
recipient: Group
}
# Question posée par un user à un groupe
type Question implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: User
recipient: Group
# Une annonce éventuellement concernée par cette question.
# Null si la question ne concerne pas une annonce particulière
forAnnouncement : Announcement
# Référence la réponse donnée par le groupe à cette Question. Si pas encore répondu, null.
forAnswer: Answer
}
# Réponse à une Question
type Answer implements Message {
id: ID!
createdAt: String!
updatedAt: String!
title: String!
content: String!
authors: Group
recipient: Group
# La question à laquelle cette Answer répond. Non-nullable bien sûr
forQuestion: Question!
}
`
;
const
Requests
=
`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment