graphannis-webservice 4.1.2

This is a web service to the new backend implementation of the ANNIS linguistic search and visualization system.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
table! {
    corpus_groups (group, corpus) {
        group -> Text,
        corpus -> Text,
    }
}

table! {
    groups (name) {
        name -> Text,
    }
}

joinable!(corpus_groups -> groups (group));

allow_tables_to_appear_in_same_query!(corpus_groups, groups,);