]> Git — Sourcephile - gargantext.git/blob - src/Gargantext/Database/Schema/NodeContext.hs
[MERGE]
[gargantext.git] / src / Gargantext / Database / Schema / NodeContext.hs
1 {-|
2 Module : Gargantext.Database.Schema.NodeNode
3 Description :
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
8 Portability : POSIX
9
10 Here is a longer description of this module, containing some
11 commentary with @some markup@.
12 -}
13
14 {-# OPTIONS_GHC -fno-warn-orphans #-}
15
16 {-# LANGUAGE Arrows #-}
17 {-# LANGUAGE FunctionalDependencies #-}
18 {-# LANGUAGE QuasiQuotes #-}
19 {-# LANGUAGE TemplateHaskell #-}
20
21 module Gargantext.Database.Schema.NodeContext where
22
23 import Gargantext.Core.Types
24 import Gargantext.Database.Schema.Prelude
25 import Gargantext.Database.Schema.NodeNode () -- Just importing some instances
26 import Gargantext.Prelude
27
28
29 data NodeContextPoly id node_id context_id score cat
30 = NodeContext { _nc_id :: !id
31 , _nc_node_id :: !node_id
32 , _nc_context_id :: !context_id
33 , _nc_score :: !score
34 , _nc_category :: !cat
35 } deriving (Show)
36
37 type NodeContextWrite = NodeContextPoly (Maybe (Field SqlInt4))
38 (Field SqlInt4)
39 (Field SqlInt4)
40 (Maybe (Field SqlFloat8))
41 (Maybe (Field SqlInt4))
42
43 type NodeContextRead = NodeContextPoly (Field SqlInt4)
44 (Field SqlInt4)
45 (Field SqlInt4)
46 (Field SqlFloat8)
47 (Field SqlInt4)
48
49 type NodeContext = NodeContextPoly (Maybe Int) NodeId NodeId (Maybe Double) (Maybe Int)
50
51 $(makeAdaptorAndInstance "pNodeContext" ''NodeContextPoly)
52 makeLenses ''NodeContextPoly
53
54 nodeContextTable :: Table NodeContextWrite NodeContextRead
55 nodeContextTable =
56 Table "nodes_contexts"
57 ( pNodeContext
58 NodeContext { _nc_id = optionalTableField "id"
59 , _nc_node_id = requiredTableField "node_id"
60 , _nc_context_id = requiredTableField "context_id"
61 , _nc_score = optionalTableField "score"
62 , _nc_category = optionalTableField "category"
63 }
64 )