Uploaded image for project: 'Olingo'
  1. Olingo
  2. OLINGO-1267

Is it possible to generate deep insert response with navigation properties?

    XMLWordPrintableJSON

Details

    • Question
    • Status: Open
    • Major
    • Resolution: Unresolved
    • (Java) V4 4.4.0
    • (Java) V4 5.0.1
    • odata4-server
    • None
    • windows

    Description

      1]Following is metadata
      <Schema Namespace="ChildEntityns" xmlns="http://docs.oasis-open.org/odata/ns/edm">
      <EntityType Name="A">
      <Key>
      <PropertyRef Name="Id" />
      </Key>
      <Property Name="Id" Type="Edm.Int32" Nullable="false" />
      <Property Name="Name" Type="Edm.String" Nullable="false" Unicode="false" />
      <NavigationProperty Name="B" Type="Collection(ChildEntityns.B)" ContainsTarget="true" />
      <Annotation Term="ChildEntityns.PluralName" String="As" />
      </EntityType>
      <EntityType Name="B">
      <Key>
      <PropertyRef Name="Id" />
      </Key>
      <Property Name="Id" Type="Edm.Int32" Nullable="false" />
      <Property Name="Name" Type="Edm.String" Nullable="false" Unicode="false" />
      <NavigationProperty Name="A" Type="ChildEntityns.A" Nullable="false" ContainsTarget="true" />
      <Annotation Term="ChildEntityns.PluralName" String="Bs" />
      </EntityType>
      <EntityContainer Name="ChieldCNT">
      <EntitySet Name="Aentity" EntityType="ChildEntityns.A" />
      </EntityContainer>
      </Schema>

      *2] method[POST]=> http://localhost:8085/MagicXpiOData/ChildEntityns.OData_1/Aentity*
      {
      "Id":1,
      "Name": "A",
      "B":[

      { "Id":1, "Name": "B" }

      ]

      }

      3]Response of new entity creation(generated response contains only simple properties of entity)

      { "@odata.context": "$metadata#Aentity", "Id": 1, "Name": "A" }

      4]My question: Is it possible to generate response(Containing with navigation properties also) like following
      {
      "@odata.context": "$metadata#Aentity",
      "Id": 1,
      "Name": "A",
      "B":[

      { "Id":1, "Name": "B" }

      ]
      }

      Attachments

        Activity

          People

            Unassigned Unassigned
            Dattatray Dattatray
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: