grandparent_context.hpp 635 B

12345678910111213141516171819
  1. const auto grandparent_context_data = mstch::map{
  2. {"grand_parent_id", std::string{"grand_parent1"}},
  3. {"parent_contexts", mstch::array{
  4. mstch::map{
  5. {"parent_id", std::string{"parent1"}},
  6. {"child_contexts", mstch::array{
  7. mstch::map{{"child_id", std::string{"parent1-child1"}}},
  8. mstch::map{{"child_id", std::string{"parent1-child2"}}}
  9. }}
  10. },
  11. mstch::map{
  12. {"parent_id", std::string{"parent2"}},
  13. {"child_contexts", mstch::array{
  14. mstch::map{{"child_id", std::string{"parent2-child1"}}},
  15. mstch::map{{"child_id", std::string{"parent2-child2"}}}
  16. }}
  17. }
  18. }}
  19. };