输出结果 [ { "id": 1, "name": "Learning GraphQL", "edition": 1, "price": 50, "store": { "id": 1, "name": "O'REILLY", "website": null }, "authors": [ { "id": 2, "firstName": "Alex", "lastName": "Banks", "gender": "MALE" }, { "id": 1, "firstName": "Eve", "lastName": "Procello", "gender": "FEMALE" } ] }, { "id": 2, "name": "Learning GraphQL", "edition": 2, "price": 55, "store": { "id": 1, "name": "O'REILLY", "website": null }, "authors": [ { "id": 2, "firstName": "Alex", "lastName": "Banks", "gender": "MALE" }, { "id": 1, "firstName": "Eve", "lastName": "Procello", "gender": "FEMALE" } ] }, { "id": 3, "name": "Learning GraphQL", "edition": 3, "price": 51, "store": { "id": 1, "name": "O'REILLY", "website": null }, "authors": [ { "id": 2, "firstName": "Alex", "lastName": "Banks", "gender": "MALE" }, { "id": 1, "firstName": "Eve", "lastName": "Procello", "gender": "FEMALE" } ] } ]
| 输出结果 [ BookView( id=1, name=Learning GraphQL, edition=1, price=50.00, store=BookView.TargetOf_store( id=1, name=O'REILLY, website=null ), authors=[ BookView.TargetOf_authors( id=2, firstName=Alex, lastName=Banks, gender=MALE ), BookView.TargetOf_authors( id=1, firstName=Eve, lastName=Procello, gender=FEMALE ) ] ), BookView( id=2, name=Learning GraphQL, edition=2, price=55.00, store=BookView.TargetOf_store( id=1, name=O'REILLY, website=null ), authors=[ BookView.TargetOf_authors( id=2, firstName=Alex, lastName=Banks, gender=MALE ), BookView.TargetOf_authors( id=1, firstName=Eve, lastName=Procello, gender=FEMALE ) ] ), BookView( id=3, name=Learning GraphQL, edition=3, price=51.00, store=BookView.TargetOf_store( id=1, name=O'REILLY, website=null ), authors=[ BookView.TargetOf_authors( id=2, firstName=Alex, lastName=Banks, gender=MALE ), BookView.TargetOf_authors( id=1, firstName=Eve, lastName=Procello, gender=FEMALE ) ] ) ]
|