我是dgraph的初学者,并且从neo4j转到dgraph。我正在编写具有不同社交媒体平台详细信息的架构。
考虑到facebook,该架构将具有配置文件,组,页面的基本详细信息,以及fb配置文件与组和页面之间的不同关系,例如
profile_a is 'friends_of' profile_b;
user 'likes' page_b;
user is 'member_of' group_a
user 'works_at' place_a
类似的Twitter关系将是
twitter_user 'follows' user_a
user_a 'followed_by' users
我这样做的目的
type Person{
name: string @index(exact) .
id: string @index(exact) .
profile: string @index(exact) .
picture_link: string .
status_count: int .
location: string .
tags: string .
user_id: int .
follower_count: string .
friend_count: string .
type: int @index(exact) .
likes : [Page] .
friends_of : [Fb_User] .
members_of : [Group] .
works_at : {
name: string .
}
}
type Fb_User{
name: string @index(exact) .
id: string @index(exact) .
profile: string @index(exact) .
picture_link: string .
status_count: int .
location: string .
type: int @index(exact) .
location: string .
tags: string .
user_id: int .
}
type Group{
name: string @index(exact) .
id: string @index(exact) .
profile: string @index(exact) .
picture_link: string .
group_member : int .
}
type Page{
name: string @index(exact) .
id: string @index(exact) .
profile: string @index(exact) .
picture_link: string .
page_type : int .
}
type Facebook
{
label: string @index(exact)
}
请指导和纠正有关架构结构的问题。期待在pydgraph中实现它
谢谢
得到了帮助
https://tour.dgraph.io/schema/1/
我期望一个模式可以通过python代码接受基本的细节和关系
最佳答案
基于example,您所指的是:
在您的情况下,既不需要在类型上定义id
字段,也不必使其成为类型string
。 dgraph将自动分配一个uid
。 uid
的索引要快得多。
确保提供指令。例如,如果您通过以下方式定义Person
和Page
之间的关系:likes : [Page] .
,请在类型定义之后提供格式为likes: [uid] .
的指令。
您还可以考虑尝试Dgraph的GraphQL version,以便可以与GraphQL SDL建立关系,这将使它们在您的应用程序中可重复使用。
关于python - 在dgraph中编写社交媒体的模式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58761912/