I am trying to use the CogniteSdk in c# to build my FDM model node and egde. I able to insert the node accordingly but having issue when trying to define the edge. As you can see below , to create an edge, it require the "Type" to be define. There is no error but when i check my UserDashboard model, it cannot link to my DashboardItem.
Anyone know how we can insert Edge using C# SDK?

FDM:
type UserDashboard @view(version: "c3020ef716088a") {
userId: String!
createdDateTime: Timestamp
lastUpdateDatetime: Timestamp
dashboard: [DashboardItem]
}
type DashboardItem @view(version: "62c414860c7734") {
userId: String!
index: Int!
id: Int!
}
UserDashboard

DashboardItem
