Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9192645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:58:32+00:00 2026-06-17T20:58:32+00:00

I got this structure for my game Document Game Document. { _id : ObjectId(

  • 0

I got this structure for my game Document

Game Document.

{ "_id" : ObjectId( "51043d468ead0e0757000006" ),
  "active" : true,
  "created" : 1359232326,
  "difficulty" : 0,
  "map" : { "$ref" : "Map",
    "$id" : ObjectId( "5103c0228ead0e3764000000" ),
    "$db" : "mydb" },
  "mode" : "coop",
  "players" : [ 
    { "$ref" : "User",
      "$id" : ObjectId( "50d83abf038054b560000000" ),
      "$db" : "mydb" } ],
  "title" : "testgame" }

Now i want to add another player to this Game, this is what i’ve tried

  $user = $this->get('doctrine_mongodb')
    ->getRepository('FantasytdUserBundle:User')
    ->findById($userId);

  $db->createQueryBuilder()
    ->update()
    ->field('id')->equals($gameId)
    ->field('players')->push($user)
    ->getQuery()
    ->execute();

Also

$user = array_pop($user->toArray());

No luck, all i get is

“zero-length keys are not allowed, did you use $ with double quotes?”

In my doctrine document the Players is defined to be a reference to User.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T20:58:34+00:00Added an answer on June 17, 2026 at 8:58 pm

    AFAIK doctrine 2 can’t push documents. You should prepare array:
    Try something like this:

    $user = $this->get('doctrine_mongodb')
      ->getRepository('FantasytdUserBundle:User')
      ->findById($userId);
    
    $user_data = array("$ref" => "User",
      "$id" : $user->getId(), // Or new \MongoId($userId)
      "$db" : "mydb");
    
    $db->createQueryBuilder()
      ->update()
      ->field('id')->equals($gameId)
      ->field('players')->push($user_data)
      ->getQuery()
      ->execute();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I defined this data structure: class Foo(db.Model): created = db.DateTimeProperty(required = True) In the
I have got this structure class House include Mongoid::Document embeds_many :inhabitants end class Inhabitant
I got this formula from a data structure book in the bubble sort algorithm.
I've got this really basic table structure: Posts PostXTags PostTags There is a 1-n
I've got MongoKit structure like this: structure = { ... 'plugin': { 'id': unicode,
I've got an xml structure similar to this: <cars> <car> <make>Ford</make> <model>F-150</model> <year>2011</year> <customs>
My Java application has got a package structure similar to this: src/com/name/app src/com/name/app/do src/com/name/utils/db
I've got a peer to peer iPhone game working pretty well. I've created a
I've got this really basic table structure: dbo.tblCategory dbo.tblQuestion (many to one relationship to
I read article about the event scheduler on MySql.Then I got this structure, CREATE

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.